;----------------------------------------------------------------------------------------------------------------------- ; INFO ;======================================================================================================================= ; In this file you can edit some QuickText plugin parameters, ; I created separate file because, I didn't want to mess up file with snippets (tags). ; You can change this file in notepad++ and then use "Plugin->QuickText->Refresh Configuration" to load it. ; It will also reload QuicktText.ini file (with snippets definitions) ; For testing purposes I advise to add some shortcut key to this function using "Settings->Shortcut Mapper...". ; ; Currently you can change only "allowedChars". ; ;----------------------------------------------------------------------------------------------------------------------- ; WARNING: ;======================================================================================================================= ; ; Do not remove empty line at the end of file, because used (in QuickText plugin sources) ini file parsing library ; just doesn't parse last line - probably a bug. ; ; Don't use quotes (single or double), because they are treated as part of "allowedChars" value: ; allowedChars=abc ; is OK ; allowedChars="abc" ; is not OK ; Yes, another bug of mentioned library [General] ; "allowedChars" - characters which are valid for tags (snippets names). ; If you want to snippets like this: div#my_id.my_class>ul>li to work, you will have to add all its unique characters ; to this parameter. ; ; You will have to note, that those characters are treated as a word by scintilla, ex.: ; If you will add "<>" to allowedChars and define snippet "span=$" and ; you will try to "replace tag" inside some html tag: ;