You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ The notes.vim plug-in for the [Vim text editor] [vim] makes it easy to manage yo
12
12
***Searching notes:**`:SearchNotes keyword …` searches for keywords and `:SearchNotes /pattern/` searches for regular expressions
13
13
***Smart defaults:** Without an argument `:SearchNotes` searches for the word under the cursor (if the word starts with `@` that character will be included in the search, this means you can easily search for *@tagged* notes)
14
14
***Back-references:** The `:RelatedNotes` command find all notes referencing the current file
15
-
* A [Python 2][python] script is included that accelerates keyword searches using an [SQLite][sqlite] database
15
+
* A [Python 2][python] script is included that accelerates keyword searches using a keyword index
16
16
* The `:RecentNotes` command lists your notes by modification date, starting with the most recently edited note
17
17
***Navigating between notes:** The included file type plug-in redefines [gf][gf] to jump between notes and the syntax script highlights note names as hyper links
18
18
***Writing aids:** The included file type plug-in contains mappings for automatic curly quotes, arrows and list bullets and supports completion of note titles using Control-X Control-U and completion of tags using Control-X Control-O
@@ -135,11 +135,11 @@ If you don't pass any arguments to the `:SearchNotes` command it will search for
135
135
136
136
These mappings are currently not enabled by default because they conflict with already useful key mappings, but if you have any suggestions for alternatives feel free to contact me through GitHub or at <peter@peterodding.com>.
137
137
138
-
#### Accelerated searching with Python and SQLite
138
+
#### Accelerated searching with Python
139
139
140
-
After collecting a fair amount of notes (say more than 5 MB) you will probably start to get annoyed at how long it takes Vim to search through all of your notes. To make searching more scalable the notes plug-in includes a Python script which uses a full text index of your notes stored in an SQLite database.
140
+
After collecting a fair amount of notes (say more than 5 MB) you will probably start to get annoyed at how long it takes Vim to search through all of your notes. To make searching more scalable the notes plug-in includes a Python script which uses a persistent full text index of your notes stored in a file.
141
141
142
-
The first time the Python script is run it will need to build the complete index which can take a few minutes, but after the index has been initialized updates and searches should be more or less instantaneous.
142
+
The first time the Python script is run it will need to build the complete index which can take a moment, but after the index has been initialized updates and searches should be more or less instantaneous.
143
143
144
144
### The `:RelatedNotes` command
145
145
@@ -187,7 +187,6 @@ This software is licensed under the [MIT license] [mit].
0 commit comments