diff options
author | 2016-06-15 23:45:19 -0400 | |
---|---|---|
committer | 2016-06-15 23:45:19 -0400 | |
commit | b2a88f20460e036012156aa2085114befadfd9af (patch) | |
tree | dc3e78c6997f397368899bc1c29d548b43841ce4 /doc/manual.md | |
parent | 58215262ab9c8b104980abe867754af83a978737 (diff) | |
download | textadept-b2a88f20460e036012156aa2085114befadfd9af.tar.gz textadept-b2a88f20460e036012156aa2085114befadfd9af.zip |
`textadept.editing.goto_line()` takes 0-based line number.
It used to take a 1-based line number. Mimic Scintilla.
Diffstat (limited to 'doc/manual.md')
-rw-r--r-- | doc/manual.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/manual.md b/doc/manual.md index 21ef0510..16ba4854 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1987,6 +1987,7 @@ STRIP\_TRAILING\_SPACES |Renamed |[strip\_trailing\_spaces][] AUTOCOMPLETE\_ALL |Renamed |[autocomplete\_all\_words][] char\_matches |Replaced|[auto\_pairs][] braces |Renamed |[brace\_matches][] +[goto\_line][](line) |Changed |_line argument is 0-based_ **textadept.run** | | RUN\_IN\_BACKGROUND |Renamed |[run\_in\_background][] CHECK\_SYNTAX |Removed | @@ -2021,6 +2022,7 @@ MAX\_RECENT\_FILES |Renamed |[max\_recent\_files][] [strip\_trailing\_spaces]: api.html#textadept.editing.strip_trailing_spaces [autocomplete\_all\_words]: api.html#textadept.editing.autocomplete_all_words [brace\_matches]: api.html#textadept.editing.brace_matches +[goto\_line]: api.html#textadept.editing.goto_line [run\_in\_background]: api.html#textadept.run.run_in_background [compile]: api.html#textadept.run.compile [run]: api.html#textadept.run.run |