Reputation: 17154
By default the current line is always highlighted in the Geany text editor. How can we disable this feature?
Upvotes: 7
Views: 3117
Reputation: 1
If you want to disable the current line highlighting in the Geany IDE, it is very simple: You can do this in any of the default colour schemes. Follow the given steps below; these steps are for Linux users:
Open Home partition in file manager.
Go to your username and enable show hidden files; you can enable it by pressing (ctrl+h) or by right-clicking and finding that option.
Find the .config
folder manually, or by using the search option.
Now go to the geany
folder.
Go to the colorschemes
folder.
Now open the themefile
which you want to disable highlighting on the current line in any text editor.
Scroll down and find current_line=1a1a1a;true
; replace true
with false
like below:
current_line=1a1a1a;false
Then save and exit.
Note: Here it is not necessary that the colour name is 1a1a1a
; it should change according to your scheme looks; for example, some are set to #6f6f6f
. Your main task is to replace true
to false
and then save and exit.
These are paths for easily understand:
File manager > Home partition or folder > Enable hidden files or finding .config
> geany
> colorschemes
Upvotes: 0
Reputation: 138
Go to menu Tools → Configuration Files → filetypes.common.
Find the word current_line
, and then change that line on the third parameter to false
:
current_line=0x000000;0xf0f0f0;false;
Upvotes: 11