diff options
author | 2013-09-16 21:26:43 -0400 | |
---|---|---|
committer | 2013-09-16 21:26:43 -0400 | |
commit | 095980fbbc1f5f4956afdee2802b87ce45f245e7 (patch) | |
tree | f1c214a39b66bd939dde2f7deb26e449f7fe57c9 /modules/textadept/adeptsense.lua | |
parent | dbef5c3fa8ca9f842f75a6db1f0aa0fb029a4be6 (diff) | |
download | textadept-095980fbbc1f5f4956afdee2802b87ce45f245e7.tar.gz textadept-095980fbbc1f5f4956afdee2802b87ce45f245e7.zip |
Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.
Also removed more unused constants.
Diffstat (limited to 'modules/textadept/adeptsense.lua')
-rw-r--r-- | modules/textadept/adeptsense.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/textadept/adeptsense.lua b/modules/textadept/adeptsense.lua index 63ee855b..be350c75 100644 --- a/modules/textadept/adeptsense.lua +++ b/modules/textadept/adeptsense.lua @@ -715,10 +715,11 @@ end) --- -- Loads the Ctags file *tag_file* for autocompletions. --- If *nolocations* is `true`, `sense:goto_ctag()` cannot be used with this set --- of tags. It is recommended to pass `-n` to `ctags` in order to use line --- numbers instead of text patterns to locate tags. This will greatly reduce --- memory usage for a large number of symbols if `nolocations` is `false`. +-- *nolocations* indicates whether or not to store the location part of tags. If +-- `true`, `sense:goto_ctag()` cannot be used with this set of tags. It is +-- recommended to pass `-n` to `ctags` in order to use line numbers instead of +-- text patterns to locate tags. This will greatly reduce memory usage for a +-- large number of symbols if *nolocations* is `false`. -- @param sense The Adeptsense returned by `adeptsense.new()`. -- @param tag_file The path of the Ctags file to load. -- @param nolocations Optional flag indicating whether or not to discard the |