diff options
author | nyamatongwe <unknown> | 2001-03-27 02:55:51 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-03-27 02:55:51 +0000 |
commit | 30d756cb5d202b3adb5609dd517a14c97774129d (patch) | |
tree | 92009ce0e852c385fe54f58b96a86dfe04e204b5 | |
parent | 26eba736541e3d75a615fcfa66528d10c24e4975 (diff) | |
download | scintilla-mirror-30d756cb5d202b3adb5609dd517a14c97774129d.tar.gz |
Documented that SearchNext and SearchPrev do not ensure the selection is
visible.
-rw-r--r-- | include/Scintilla.iface | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 87bfccc7a..baf3faf4c 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -957,9 +957,11 @@ set void SetEdgeColour=2365(colour edgeColour,) fun void SearchAnchor=2366(,) # Find some text starting at the search anchor. +# Does not ensure the selection is visible. fun int SearchNext=2367(int flags, string text) # Find some text starting at the search anchor and moving backwards. +# Does not ensure the selection is visible. fun int SearchPrev=2368(int flags, string text) # Show caret within N lines of edge when it's scrolled to view |