Does Gedit have user definable languages? If not, then no.
Notepad++ can be installed on Linux through Wine or atleast it could in the previous version I did it on).It does, but I think it's set up different from Notepad++.
amateurish_plotter
flamboyant_schemer
intricate_webweaver
elusive_shadow
naive_appeaser
underhanded_rogue
charismatic_negotiator
grey_eminence
indulgent_wastrel
thrifty_clerk
midas_touched
misguided_warrior
tough_soldier
skilled_tactician
brilliant_strategist
detached_priest
martial_cleric
scholarly_theologian
mastermind_theologian
stressed
depressed
ill
pneumonic
syphilitic
leper
wounded
maimed
infirm
incapable
drunkard
has_tuberculosis
has_typhoid_fever
has_typhus
has_bubonic_plague
has_measles
has_small_pox
crusader
bastard
twin
legit_bastard
pregnant
excommunicated
kinslayer
homosexual
clubfooted
harelip
hunchback
lisp
stutter
fair
ugly
dwarf
genius
quick
slow
imbecile
inbred
strong
weak
celibate
hedonist
scholar
gardener
mystic
impaler
duelist
hunter
poet
falconer
lustful
chaste
gluttonous
temperate
greedy
charitable
slothful
diligent
envious
kind
wroth
patient
proud
humble
deceitful
honest
craven
brave
shy
gregarious
ambitious
content
arbitrary
just
cynical
zealous
paranoid
trusting
cruel
light_foot_leader
heavy_infantry_leader
cavalry_leader
inspiring_leader
trickster
organizer
defensive_leader
experimenter
flanker
aggressive_leader
siege_leader
mujahid
hajjaj
on_hajj
faqih
hafiz
sayyid
pilgrim
mirza
scarred
eunuch
blinded
born_in_the_purple
augustus
flat_terrain_leader
rough_terrain_leader
mountain_terrain_leader
desert_terrain_leader
holy_warrior
unyielding_leader
has_aztec_disease
child_of_consort
peasant_leader
heresiarch
berserker
varangian
saoshyant
saoshyant_descendant
viking
monk
nun
on_pilgrimage
sickly
mutazilite
ashari
sympathy_christendom
sympathy_islam
sympathy_pagans
sympathy_zoroastrianism
sympathy_judaism
bad_priest_christian
bad_priest_muslim
bad_priest_norse
bad_priest_tengri
bad_priest_zoroastrian
bad_priest_aztec
narrow_flank_leader
brahmin
kshatriya
vaishya
sympathy_indian
shaivist_hindu
vaishnavist_hindu
shaktist_hindu
smartist_hindu
mahayana_buddhist
vajrayana_buddhist
theravada_buddhist
digambara_jain
svetambara_jain
decadent
reincarnation
war_elephant_leader
jungle_terrain_leader
in_hiding
winter_soldier
seducer
seductress
administrator
architect
strategist
socializer
schemer
theologian
gamer
Instructions:
If you have previous version you must first remove old language file, to do so in Notepad++ open "Language/Define your language...", in "User language" box at the top select CK2, select "Remove".
The zip file contains two files - CK2.xml and CK2lang.xml. Place CK2.xml in directory where you installed "Notepad++/Notepad++/plugins/API" (default path would be "C:/Program Files/Notepad++/plugins/API"). Run Notepad++ open "Language/Define your language...", click Import and chose CK2lang.xml. Open "Settings/Preferences/Auto-Completion" and check "Enable auto-completion on each input" and "Function completion".
event_0 = {}
#! start of my event chain
event_1 = {}
event_2 = {}
event_3 = {}
#!! end of my event chain
event_4 = {}
@Ekyman , very nice work! Works like a charm!OK, I'm kind of spamming this thread, but I was bored so I implemented @burny26's suggestion. You can now use comments to collapse larger blocks than just one pair of brackets (for example, you could use this to make an entire event change one collapsible element, if all the events were together). To avoid making every single comment collapsible, I had to add a unique syntax for collapsible comments.
So:
To begin a collapsible section, follow the comment sign "#" with an exclamation point. If you add a space after the exclamation point, you can then write whatever comment you want.
To end a collapsible section, follow the comment sign "#" with two exclamation points. If you add a space after the exclamation points, you can then write whatever comment you want.
For example:
Everything between the line starting with #! and the line starting with #!! (events 1-3) will be collapsible just like everything within a set of brackets is collapsible.Code:event_0 = {} #! start of my event chain event_1 = {} event_2 = {} event_3 = {} #!! end of my event chain event_4 = {}
I updated the post where I posted the first update with this new version.
OK, I'm kind of spamming this thread, but I was bored so I implemented @burny26's suggestion. You can now use comments to collapse larger blocks than just one pair of brackets (for example, you could use this to make an entire event change one collapsible element, if all the events were together). To avoid making every single comment collapsible, I had to add a unique syntax for collapsible comments.
So:
To begin a collapsible section, follow the comment sign "#" with an exclamation point. If you add a space after the exclamation point, you can then write whatever comment you want.
To end a collapsible section, follow the comment sign "#" with two exclamation points. If you add a space after the exclamation points, you can then write whatever comment you want.
For example:
Everything between the line starting with #! and the line starting with #!! (events 1-3) will be collapsible just like everything within a set of brackets is collapsible.Code:event_0 = {} #! start of my event chain event_1 = {} event_2 = {} event_3 = {} #!! end of my event chain event_4 = {}
I updated the post where I posted the first update with this new version.
You should be able to, yes.Nice. I imagine we can also nest comments like we can nest brackets, right?