How would I hide a specific Character in a ListArray
Basically, i'm making a simple terminal file editor, which has basic syntax highlighting. I'm facing an issue where the character used for the 'cursor' (which is controlled by arrow keys) is fucking up the syntax highlighting. I use 2 variables which store its location (currentLine, and currentColumn), so how would I hide it or something off the syntax highlighting function?
Code:
15 Replies
⌛
This post has been reserved for your question.
Hey @explement! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
let me know if u need the rest of the code aswell
can u show the cursor code
this is the code to set the line/col:
and this is the code that updates the actual arraylist
so you want this
to ignore the
cursor right
that is just |
yes
because it can get in the middle of keywords and then instead of for example 'def' (which is colored red), it would be 'd|ef' which wont have any color at all
hm
what about if you
make another variable
where you get rid of the cursor
then do all the color stuff
and then after doing it you add the cursor back
that could work
so like have a variable for the arraylist with the cursor removed and then apply color?
yea
and then after you apply the color you add the cursor back
quick question tho, how do i access a specific character of a object in a arraylist
because i cant really find anyway of how to do this
i know how to access an object
like if the array list was ["AAA, "BBB', "CCC"]
i know i could do like .delete(0) to delete "AAA", but how would i say delete the middle A of it
uh
string.find
i think
sorry
and u get the index
u gotta remember the position of the cursor to put it back after editing so ye
use indexof
alright
lmk if i was right about the solution l0l
tryin to implement it, will let u know
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.