diff --git a/index.html b/index.html index bed63b2..18b65c5 100644 --- a/index.html +++ b/index.html @@ -188,8 +188,8 @@
Cadmus is a knowledge management tool in your terminal.
Cadmus provides command driven interface to find and edit Markdown files, such as finding by name, searching for terms, filtering by tags, generating backlinks and generating relative links to other notes.
Cadmus is just a bunch of shell scripts that essentially use pipes and ripgrep with skim to display them.
diff --git a/search/search_index.json b/search/search_index.json index 4a92b42..9c563d5 100644 --- a/search/search_index.json +++ b/search/search_index.json @@ -1 +1 @@ -{"config":{"lang":["en"],"min_search_length":3,"prebuild_index":true,"separator":"[\\s\\-]+"},"docs":[{"location":"index.html","text":"Cadmus! \u00b6 Cadmus is a knowledge management tool in your terminal. What does it do \u00b6 Cadmus provides command driven interface to find and edit Markdown files, such as finding by name, searching for terms, filtering by tags, generating backlinks and generating relative links to other notes. How does it Work \u00b6 Cadmus is just a bunch of shell scripts that essentially use pipes and ripgrep with skim to display them. How Do i Use It \u00b6 Installation \u00b6 cadmus is available on the AUR , generally however cadmus will operate in a portable fashion from =~/.cadmus/=, so just using git is fine as well: cd $( mktemp -d ) wget https://raw.githubusercontent.com/RyanGreenup/cadmus/master/install.sh bash install.sh Note To remove it it is sufficient to perform: rm -rf \" $HOME /.cadmus\" rm ~/.local/bin/cadmus Warning This assumes that the dependencies have all been installed and recoll is indexing the directory of your notes. Usage \u00b6 Just run cadmus at the terminal and it will walk you through generating a config file. Afterwards running cadmus will show various commands such as find and search that can be used to work with your knowledge base. Note Shortly functionality will be implemented to allow creating a .cadmus file in any directory that will act as a config for all markdown files beneath that directory, this is useful if you want to use cadmus with documentation for a project and still have access to your notes, or have multiple knowledge bases. When or Why Would I Use This \u00b6 Well I wrote this because my interests are Math and Data Sci and quite frankly I suffer from information overload, I like open-source stuff, simple scripts and unix philosophy so if any of that resonates with you try it out. This is all modular so take what you like and reimplement it, fork it, make PR's and please fell free to post issues even if it's just to say Hey, I like tool x have you tried it before? . Background \u00b6 The idea of cadmus is to demonstrate how powerful the terminal can be and how it can act as a functional replacement for tools like OneNote or Evernote. In reality Cadmus is just a couple of shell scripts to help users tie together other really good tools like Skim , ripgrep , recoll and TMSU . keyboard bindings \u00b6 Command Shortcut Description cadmus find Ctrl - Q switch between find and grep in skim Dependencies \u00b6 bat cut fd find fzf GNU realpath grep highlight jq Arch | brew | ubuntu mdcat AUR node Pandoc perl python ranger recode Recoll rg Make sure to include pcre2 , this comes in Arch , if using cargo : cargo install ripgrep --features 'pcre2' sd sed skim tmsu AUR xclip or wl-clipboard Recommended for all Features \u00b6 iproute2 (for the ip binary) if you're on mac this stackExchange answer suggests iproute2 may work tectonic texlive Kitty I've also heard good things about iterm2 MkDocs MkDocs Material Extensions MkDocs Material Theme nvim tectonic WeasyPrint Interesting / Helpful / Recommended Generally (Not strictly necessary) \u00b6 guake or yakuake MarkText mdless readability-cli VNote VSCode PATH \u00b6 If any dependencies are installed with pip or cargo it will be necessary to add these directories to your PATH : ## bash echo ' export PATH=\"$HOME/.local/bin:$PATH\" export PATH=\"$HOME/.cargo/bin:$PATH\" ' >> ~/.bashrc ## zsh echo ' export PATH=\"$HOME/.local/bin:$PATH\" export PATH=\"$HOME/.cargo/bin:$PATH\" ' >> ~/.bashrc ## fish echo ' set PATH $HOME/.local/bin $PATH set PATH $HOME/bin $PATH set PATH \"$HOME/.cargo/bin $PATH ' >> ~/.config/fish/config.fish","title":"What does it do"},{"location":"index.html#cadmus","text":"Cadmus is a knowledge management tool in your terminal.","title":"Cadmus!"},{"location":"index.html#what-does-it-do","text":"Cadmus provides command driven interface to find and edit Markdown files, such as finding by name, searching for terms, filtering by tags, generating backlinks and generating relative links to other notes.","title":"What does it do"},{"location":"index.html#how-does-it-work","text":"Cadmus is just a bunch of shell scripts that essentially use pipes and ripgrep with skim to display them.","title":"How does it Work"},{"location":"index.html#how-do-i-use-it","text":"","title":"How Do i Use It"},{"location":"index.html#installation","text":"cadmus is available on the AUR , generally however cadmus will operate in a portable fashion from =~/.cadmus/=, so just using git is fine as well: cd $( mktemp -d ) wget https://raw.githubusercontent.com/RyanGreenup/cadmus/master/install.sh bash install.sh Note To remove it it is sufficient to perform: rm -rf \" $HOME /.cadmus\" rm ~/.local/bin/cadmus Warning This assumes that the dependencies have all been installed and recoll is indexing the directory of your notes.","title":"Installation"},{"location":"index.html#usage","text":"Just run cadmus at the terminal and it will walk you through generating a config file. Afterwards running cadmus will show various commands such as find and search that can be used to work with your knowledge base. Note Shortly functionality will be implemented to allow creating a .cadmus file in any directory that will act as a config for all markdown files beneath that directory, this is useful if you want to use cadmus with documentation for a project and still have access to your notes, or have multiple knowledge bases.","title":"Usage"},{"location":"index.html#when-or-why-would-i-use-this","text":"Well I wrote this because my interests are Math and Data Sci and quite frankly I suffer from information overload, I like open-source stuff, simple scripts and unix philosophy so if any of that resonates with you try it out. This is all modular so take what you like and reimplement it, fork it, make PR's and please fell free to post issues even if it's just to say Hey, I like tool x have you tried it before? .","title":"When or Why Would I Use This"},{"location":"index.html#background","text":"The idea of cadmus is to demonstrate how powerful the terminal can be and how it can act as a functional replacement for tools like OneNote or Evernote. In reality Cadmus is just a couple of shell scripts to help users tie together other really good tools like Skim , ripgrep , recoll and TMSU .","title":"Background"},{"location":"index.html#keyboard-bindings","text":"Command Shortcut Description cadmus find Ctrl - Q switch between find and grep in skim","title":"keyboard bindings"},{"location":"index.html#dependencies","text":"bat cut fd find fzf GNU realpath grep highlight jq Arch | brew | ubuntu mdcat AUR node Pandoc perl python ranger recode Recoll rg Make sure to include pcre2 , this comes in Arch , if using cargo : cargo install ripgrep --features 'pcre2' sd sed skim tmsu AUR xclip or wl-clipboard","title":"Dependencies"},{"location":"index.html#recommended-for-all-features","text":"iproute2 (for the ip binary) if you're on mac this stackExchange answer suggests iproute2 may work tectonic texlive Kitty I've also heard good things about iterm2 MkDocs MkDocs Material Extensions MkDocs Material Theme nvim tectonic WeasyPrint","title":"Recommended for all Features"},{"location":"index.html#interesting-helpful-recommended-generally-not-strictly-necessary","text":"guake or yakuake MarkText mdless readability-cli VNote VSCode","title":"Interesting / Helpful / Recommended Generally (Not strictly necessary)"},{"location":"index.html#path","text":"If any dependencies are installed with pip or cargo it will be necessary to add these directories to your PATH : ## bash echo ' export PATH=\"$HOME/.local/bin:$PATH\" export PATH=\"$HOME/.cargo/bin:$PATH\" ' >> ~/.bashrc ## zsh echo ' export PATH=\"$HOME/.local/bin:$PATH\" export PATH=\"$HOME/.cargo/bin:$PATH\" ' >> ~/.bashrc ## fish echo ' set PATH $HOME/.local/bin $PATH set PATH $HOME/bin $PATH set PATH \"$HOME/.cargo/bin $PATH ' >> ~/.config/fish/config.fish","title":"PATH"},{"location":"Convert.html","text":"Note Start this with cadmus convert What does it do \u00b6 This provides options for transforming the clipboard into other markup languages for quick copy paste. How Do I use it \u00b6 Warning This requires LaTeX or Tectonic, as well as a recent version of pandoc. Just run cadmus convert org2md/md2mediawiki/... and the clipboard will be transformed from one markup language into the other. When Would This Be Used \u00b6 This is great for taking stuff of Wikipedia or for using Dokuwiki or org-mode . Example \u00b6 #TODO How does it Work \u00b6 This simply uses pandoc, just search for pandoc inside bin/cadmus","title":"Convert"},{"location":"Convert.html#what-does-it-do","text":"This provides options for transforming the clipboard into other markup languages for quick copy paste.","title":"What does it do"},{"location":"Convert.html#how-do-i-use-it","text":"Warning This requires LaTeX or Tectonic, as well as a recent version of pandoc. Just run cadmus convert org2md/md2mediawiki/... and the clipboard will be transformed from one markup language into the other.","title":"How Do I use it"},{"location":"Convert.html#when-would-this-be-used","text":"This is great for taking stuff of Wikipedia or for using Dokuwiki or org-mode .","title":"When Would This Be Used"},{"location":"Convert.html#example","text":"#TODO","title":"Example"},{"location":"Convert.html#how-does-it-work","text":"This simply uses pandoc, just search for pandoc inside bin/cadmus","title":"How does it Work"},{"location":"Export.html","text":"Note Start this with cadmus export What does it do \u00b6 This provides options for exporting notes using \\LaTeX \\LaTeX and pandoc How Do I use it \u00b6 Warning This requires LaTeX or Tectonic, as well as a recent version of pandoc. Just run cadmus export pdf/html/docs and skim will pop up and offer notes to choose from. When Would This Be Used \u00b6 Grat for sharing notes with somebody who doesn't want Markdown. Example \u00b6 #TODO How does it Work \u00b6 This simply uses pandoc, just search for pandoc inside bin/cadmus","title":"Export"},{"location":"Export.html#what-does-it-do","text":"This provides options for exporting notes using \\LaTeX \\LaTeX and pandoc","title":"What does it do"},{"location":"Export.html#how-do-i-use-it","text":"Warning This requires LaTeX or Tectonic, as well as a recent version of pandoc. Just run cadmus export pdf/html/docs and skim will pop up and offer notes to choose from.","title":"How Do I use it"},{"location":"Export.html#when-would-this-be-used","text":"Grat for sharing notes with somebody who doesn't want Markdown.","title":"When Would This Be Used"},{"location":"Export.html#example","text":"#TODO","title":"Example"},{"location":"Export.html#how-does-it-work","text":"This simply uses pandoc, just search for pandoc inside bin/cadmus","title":"How does it Work"},{"location":"find.html","text":"Note Start this with cadmus find What does it do \u00b6 This starts a find dialog with a preview of the note on the side. How Do I use it \u00b6 After running the command type in the name or directory of a note and the fuzzy matches will be presented with an instant preview to the side. Press Ctrl + Q to toggle searching inside the note for a string, any matches will be highlighted. Pressing Enter on a note will open it in the default app, 1 if you want to do something else with it copy the path to the clipboard with Alt + w as described below in Keyboard Shortcuts . Keyboard Shortcuts \u00b6 Keys Description PgUp / PgDn Scroll Preview Ctrl - w Copy Absolute path to note 2 Alt - w Copy Relative path to note Ctrl - o Open the note in the default app without exiting Alt - y Copy File Contents to Clipboard 3 When Would This Be Used \u00b6 Imagine you're sitting at your desk and you forgot how to pipe with Mathematica , you're solution is cadmus find and then type something like computer algebra then Ctrl - Q -> . Example \u00b6 How does it Work \u00b6 So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 4 This is the code that achieves it: sk --ansi -m -c 'rg -l -t markdown --ignore-case \"{}\"' \\ --preview \"bat {} 2> /dev/null \\ --color=always --line-range :500 \\ --terminal-width 80 \\ --theme=TwoDark |\\ rg --pretty --colors --context 20 {cq} \\ --no-line-number --ignore-case \\ --colors 'match:fg:21,39,200' \\ --colors 'line:style:nobold' \\ --colors 'match:style:bold' \\ --colors 'match:bg:30,200,30'\" \\ --bind 'ctrl-f:interactive,pgup:preview-page-up,pgdn:preview-page-down' \\ --bind 'ctrl-w:execute-silent(echo {} |\\ xargs realpath |\\ xclip -selection clipboard)' \\ --bind 'alt-w:execute-silent(echo {} | xclip -selection clipboard)' \\ --bind 'alt-v:execute-silent(code -a {}),alt-e:execute-silent(emacs {})' \\ --bind 'ctrl-o:execute-silent(xdg-open {})' \\ --bind 'alt-y:execute-silent(cat {} | xclip -selection clipboard)' \\ --bind 'alt-o:execute-silent(cat {} |\\ pandoc -f markdown -t html --mathml |\\ xclip -selection clipboard)' \\ --bind 'alt-f:execute-silent(echo {} |\\ xargs dirname |\\ xargs cd; cat {} |\\ pandoc -f markdown -t dokuwiki --mathml |\\ xclip -selection clipboard)' \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c xdg-open / open on Linux/Mac respectively \u21a9 TODO: this only works on Xorg at the moment \u21a9 This is really good for Zulip / Discord \u21a9 This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"Find"},{"location":"find.html#what-does-it-do","text":"This starts a find dialog with a preview of the note on the side.","title":"What does it do"},{"location":"find.html#how-do-i-use-it","text":"After running the command type in the name or directory of a note and the fuzzy matches will be presented with an instant preview to the side. Press Ctrl + Q to toggle searching inside the note for a string, any matches will be highlighted. Pressing Enter on a note will open it in the default app, 1 if you want to do something else with it copy the path to the clipboard with Alt + w as described below in Keyboard Shortcuts .","title":"How Do I use it"},{"location":"find.html#keyboard-shortcuts","text":"Keys Description PgUp / PgDn Scroll Preview Ctrl - w Copy Absolute path to note 2 Alt - w Copy Relative path to note Ctrl - o Open the note in the default app without exiting Alt - y Copy File Contents to Clipboard 3","title":"Keyboard Shortcuts"},{"location":"find.html#when-would-this-be-used","text":"Imagine you're sitting at your desk and you forgot how to pipe with Mathematica , you're solution is cadmus find and then type something like computer algebra then Ctrl - Q -> .","title":"When Would This Be Used"},{"location":"find.html#example","text":"","title":"Example"},{"location":"find.html#how-does-it-work","text":"So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 4 This is the code that achieves it: sk --ansi -m -c 'rg -l -t markdown --ignore-case \"{}\"' \\ --preview \"bat {} 2> /dev/null \\ --color=always --line-range :500 \\ --terminal-width 80 \\ --theme=TwoDark |\\ rg --pretty --colors --context 20 {cq} \\ --no-line-number --ignore-case \\ --colors 'match:fg:21,39,200' \\ --colors 'line:style:nobold' \\ --colors 'match:style:bold' \\ --colors 'match:bg:30,200,30'\" \\ --bind 'ctrl-f:interactive,pgup:preview-page-up,pgdn:preview-page-down' \\ --bind 'ctrl-w:execute-silent(echo {} |\\ xargs realpath |\\ xclip -selection clipboard)' \\ --bind 'alt-w:execute-silent(echo {} | xclip -selection clipboard)' \\ --bind 'alt-v:execute-silent(code -a {}),alt-e:execute-silent(emacs {})' \\ --bind 'ctrl-o:execute-silent(xdg-open {})' \\ --bind 'alt-y:execute-silent(cat {} | xclip -selection clipboard)' \\ --bind 'alt-o:execute-silent(cat {} |\\ pandoc -f markdown -t html --mathml |\\ xclip -selection clipboard)' \\ --bind 'alt-f:execute-silent(echo {} |\\ xargs dirname |\\ xargs cd; cat {} |\\ pandoc -f markdown -t dokuwiki --mathml |\\ xclip -selection clipboard)' \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c xdg-open / open on Linux/Mac respectively \u21a9 TODO: this only works on Xorg at the moment \u21a9 This is really good for Zulip / Discord \u21a9 This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"How does it Work"},{"location":"preview.html","text":"Note Start this with cadmus preview What does it do \u00b6 This starts markserv in the notes directory and prints a qr code to the terminal. How Do I use it \u00b6 Warning This requires markserv and qrencode. Just run cadmus preview or cadmus preview! for global, to view your notes with makserv. When Would This Be Used \u00b6 This is good for previewing your notes similar to what they might look like on GitHub , the global preview! can be good to read notes on an iPad or share with friends over the LAN (think on campus). Example \u00b6 #TODO How does it Work \u00b6 This just uses ordinary calls to MarkServ","title":"Preview"},{"location":"preview.html#what-does-it-do","text":"This starts markserv in the notes directory and prints a qr code to the terminal.","title":"What does it do"},{"location":"preview.html#how-do-i-use-it","text":"Warning This requires markserv and qrencode. Just run cadmus preview or cadmus preview! for global, to view your notes with makserv.","title":"How Do I use it"},{"location":"preview.html#when-would-this-be-used","text":"This is good for previewing your notes similar to what they might look like on GitHub , the global preview! can be good to read notes on an iPad or share with friends over the LAN (think on campus).","title":"When Would This Be Used"},{"location":"preview.html#example","text":"#TODO","title":"Example"},{"location":"preview.html#how-does-it-work","text":"This just uses ordinary calls to MarkServ","title":"How does it Work"},{"location":"search.html","text":"Note Start this with cadmus search What does it do \u00b6 This starts a search dialog with a preview of the note on the side. How Do I use it \u00b6 Warning This requires recoll set up to index your notes directory. After running the command type in a query just like you would with Google , matches will be presented with an instant preview to the side. Press Ctrl + Q to toggle search inside the note for a string (there will not be highlighting) 1 Pressing Enter on a note will open it in the default app, 2 if you want to do something else with it copy the path to the clipboard with Alt + w as described below in Keyboard Shortcuts . Keyboard Shortcuts \u00b6 Keys Description PgUp / PgDn Scroll Preview Ctrl - w Copy Absolute path to note 3 Alt - w Copy Relative path to note Ctrl - o Open the note in the default app without exiting Alt - y Copy File Contents to Clipboard 4 When Would This Be Used \u00b6 Imagine you're sitting at your desk and this time you need to, solve a linear recurrence relation, you're solution is cadmus search and then type something like linear recursion then Ctrl - Q math mod . Example \u00b6 How does it Work \u00b6 So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 5 This is the code that achieves it: sk -m -i -c 'recoll -b -t -q \"ext:md\" {} |\\ cut -c 8- | sed s/^/realpath\\ \\\"/ |\\ sed s+\\$+\\\"\\ --relative-to\\ \\\"./\\\"+ | bash' \\ --bind pgup:preview-page-up,pgdn:preview-page-down \\ --preview \"bat --color=always --line-range :500 \\ --terminal-width 80 --theme=TwoDark {+} \\ --italic-text=always \\ --decorations=always\" \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c The distinction between this and find is essentially the distinction between grep and a search engine. \u21a9 xdg-open / open on Linux/Mac respectively \u21a9 TODO: this only works on Xorg at the moment \u21a9 This is really good for Zulip / Discord \u21a9 This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"Search"},{"location":"search.html#what-does-it-do","text":"This starts a search dialog with a preview of the note on the side.","title":"What does it do"},{"location":"search.html#how-do-i-use-it","text":"Warning This requires recoll set up to index your notes directory. After running the command type in a query just like you would with Google , matches will be presented with an instant preview to the side. Press Ctrl + Q to toggle search inside the note for a string (there will not be highlighting) 1 Pressing Enter on a note will open it in the default app, 2 if you want to do something else with it copy the path to the clipboard with Alt + w as described below in Keyboard Shortcuts .","title":"How Do I use it"},{"location":"search.html#keyboard-shortcuts","text":"Keys Description PgUp / PgDn Scroll Preview Ctrl - w Copy Absolute path to note 3 Alt - w Copy Relative path to note Ctrl - o Open the note in the default app without exiting Alt - y Copy File Contents to Clipboard 4","title":"Keyboard Shortcuts"},{"location":"search.html#when-would-this-be-used","text":"Imagine you're sitting at your desk and this time you need to, solve a linear recurrence relation, you're solution is cadmus search and then type something like linear recursion then Ctrl - Q math mod .","title":"When Would This Be Used"},{"location":"search.html#example","text":"","title":"Example"},{"location":"search.html#how-does-it-work","text":"So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 5 This is the code that achieves it: sk -m -i -c 'recoll -b -t -q \"ext:md\" {} |\\ cut -c 8- | sed s/^/realpath\\ \\\"/ |\\ sed s+\\$+\\\"\\ --relative-to\\ \\\"./\\\"+ | bash' \\ --bind pgup:preview-page-up,pgdn:preview-page-down \\ --preview \"bat --color=always --line-range :500 \\ --terminal-width 80 --theme=TwoDark {+} \\ --italic-text=always \\ --decorations=always\" \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c The distinction between this and find is essentially the distinction between grep and a search engine. \u21a9 xdg-open / open on Linux/Mac respectively \u21a9 TODO: this only works on Xorg at the moment \u21a9 This is really good for Zulip / Discord \u21a9 This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"How does it Work"},{"location":"Misc/Summary-Misc.html","text":"Note Start this with cadmus misc What does it do \u00b6 These are just miscellaneous tools that either open editors, relocate windows or sync with git. How Do I use it \u00b6 Run cadmus misc ... for whatever command. When Would This Be Used \u00b6 Much of this stuff is arbitrary things I found myself wanting to alias.","title":"Summary"},{"location":"Misc/Summary-Misc.html#what-does-it-do","text":"These are just miscellaneous tools that either open editors, relocate windows or sync with git.","title":"What does it do"},{"location":"Misc/Summary-Misc.html#how-do-i-use-it","text":"Run cadmus misc ... for whatever command.","title":"How Do I use it"},{"location":"Misc/Summary-Misc.html#when-would-this-be-used","text":"Much of this stuff is arbitrary things I found myself wanting to alias.","title":"When Would This Be Used"},{"location":"Misc/windows.html","text":"Note Start this with cadmus misc wa/wr What does it do \u00b6 This offers a fuzzy selection of windows just like rofi but in the terminal. How Do I use it \u00b6 Warning This requires wmctrl set up to index your notes directory. Run cadmus misc wa to activate a window or cadmus misc wr to relocate a window, a dialog will popup. Type to filter the popup and press Enter to activate that window. When Would This Be Used \u00b6 This is good for when you're looking for a window but you don't want to use rofi for one reason or another. Example \u00b6 TODO \u00b6 How does it Work \u00b6 This just uses wmctrl and fzf to filter through the windows like this: bash wmctrl -R \"$(wmctrl -l | cut -f 5- -d \" \" | fzf)\"","title":"Windows"},{"location":"Misc/windows.html#what-does-it-do","text":"This offers a fuzzy selection of windows just like rofi but in the terminal.","title":"What does it do"},{"location":"Misc/windows.html#how-do-i-use-it","text":"Warning This requires wmctrl set up to index your notes directory. Run cadmus misc wa to activate a window or cadmus misc wr to relocate a window, a dialog will popup. Type to filter the popup and press Enter to activate that window.","title":"How Do I use it"},{"location":"Misc/windows.html#when-would-this-be-used","text":"This is good for when you're looking for a window but you don't want to use rofi for one reason or another.","title":"When Would This Be Used"},{"location":"Misc/windows.html#example","text":"","title":"Example"},{"location":"Misc/windows.html#todo","text":"","title":"TODO"},{"location":"Misc/windows.html#how-does-it-work","text":"This just uses wmctrl and fzf to filter through the windows like this: bash wmctrl -R \"$(wmctrl -l | cut -f 5- -d \" \" | fzf)\"","title":"How does it Work"},{"location":"Tools/New.html","text":"New Note \u00b6","title":"New Note"},{"location":"Tools/New.html#new-note","text":"","title":"New Note"},{"location":"tags/Filter.html","text":"Note Start this with cadmus tags filter What does it do \u00b6 This concurrently filters your notes based on the tags that are in TMSU , it will be necessary to create tags in TMSU before doing this if the tags have changed. How Do I use it \u00b6 After running the command a list of tags that are currently in the tmsu database will be presented, press Enter to select an inital tag. From here the following will be displayed: Chosen Tags Matching Notes Concurrent Tags Further tags can be chosen to narrow down the search by pressing t or the currently selected tags can be accepted with Any key. After accepting the chosen tags with any key, all the files can be symlinked into /tmp , opened in VScode 1 or the find selecor can be started on the matches. When Would This Be Used \u00b6 This is great for when you're trying to collect all the knowledge you have on a particular topic when it isn't captured by your directory structure. (e.g. all notes on #programming may span many different directories) Example \u00b6 How does it Work \u00b6 I don't remember haha. Basically there is a bash function that finds tags in /TMSU/ and it's recursively called with t until any key is pressed. The chosen tags are subtracted from the concurrent tags by using comm : ConcurrentTags = \" $( comm -13 < ( echo \" $ChosenTags \" | sort ) <(echo \" $ConcurrentTags \" | sort))\" The relevant script is in bin/tags/FilterNotesByTMSUTag.sh This will probably change to the default app when I get time to look at it, just change it to whatever app you like in /bin/tags/FilterNotesByTMSUTag.sh \u21a9","title":"Filter"},{"location":"tags/Filter.html#what-does-it-do","text":"This concurrently filters your notes based on the tags that are in TMSU , it will be necessary to create tags in TMSU before doing this if the tags have changed.","title":"What does it do"},{"location":"tags/Filter.html#how-do-i-use-it","text":"After running the command a list of tags that are currently in the tmsu database will be presented, press Enter to select an inital tag. From here the following will be displayed: Chosen Tags Matching Notes Concurrent Tags Further tags can be chosen to narrow down the search by pressing t or the currently selected tags can be accepted with Any key. After accepting the chosen tags with any key, all the files can be symlinked into /tmp , opened in VScode 1 or the find selecor can be started on the matches.","title":"How Do I use it"},{"location":"tags/Filter.html#when-would-this-be-used","text":"This is great for when you're trying to collect all the knowledge you have on a particular topic when it isn't captured by your directory structure. (e.g. all notes on #programming may span many different directories)","title":"When Would This Be Used"},{"location":"tags/Filter.html#example","text":"","title":"Example"},{"location":"tags/Filter.html#how-does-it-work","text":"I don't remember haha. Basically there is a bash function that finds tags in /TMSU/ and it's recursively called with t until any key is pressed. The chosen tags are subtracted from the concurrent tags by using comm : ConcurrentTags = \" $( comm -13 < ( echo \" $ChosenTags \" | sort ) <(echo \" $ConcurrentTags \" | sort))\" The relevant script is in bin/tags/FilterNotesByTMSUTag.sh This will probably change to the default app when I get time to look at it, just change it to whatever app you like in /bin/tags/FilterNotesByTMSUTag.sh \u21a9","title":"How does it Work"},{"location":"tags/create.html","text":"Note Start this with cadmus tags create Warning The tags stuff is a work in progress* , it's a bit rough around the edges. What does it do \u00b6 This starts an interactive dialog to extract inline #tags as well as tags in a YAML header and pass them to TMSU . How Do I use it \u00b6 After running the command type a menu will be displayed, if there is no pre-existing TMSU database, press n to create one and then re-execute cadmus tags create . From there usually you will want to extract both types of tags so press b , cadmus will sync the tags between your notes and TMSU 1 When Would This Be Used \u00b6 This needs to be used every time your tags are changed in order to bring tmsu back in sync, otherwise when you look for tags it won't show the correct notes. Example \u00b6 How does it Work \u00b6 Hash tags \u00b6 Hash tags are easy, just use ripgrep with pcre2 : rg --pcre2 '(?<=\\s#)[a-zA-Z]+(?=\\s)' -t markdown -o $NOTE_DIR \\ | sed s+:+ \\ + | sed s/^/tmsu \\ tag \\ / YAML Tags \u00b6 This is a little more involved, it's essentially a couple of `for`` loops over the files, I did it in R first but it was too slow so I redid it in NodeJS , checkout these files for the source code: /bin/tags/yaml-parse.js /home/ryan/.cadmus/bin/tags/ListTags.R Integrating with Vim \u00b6 I put these lines in my .vimrc to generate a list and filter tags using FZF.vim: imap < expr > < C - c >< C - y > fzf# vim # complete ( 'node ~/bin/printMarkdownTags/yaml-parse.js $HOME/Notes/MD/notes \\| sort -u' ) imap < expr > < C - c >< C - t > fzf# vim # complete ( 'rg --pcre2 \"\\s#[a-zA-Z-@]+\\s\" -o --no-filename $HOME/Notes/MD -t md \\| sort -u' ) Dependencies \u00b6 This requires, TMSU, nodejs and ripgrep with pcre2. I played with the idea of avoiding TMSU but it works really well and the Virtual File System is really neat. \u21a9","title":"Create"},{"location":"tags/create.html#what-does-it-do","text":"This starts an interactive dialog to extract inline #tags as well as tags in a YAML header and pass them to TMSU .","title":"What does it do"},{"location":"tags/create.html#how-do-i-use-it","text":"After running the command type a menu will be displayed, if there is no pre-existing TMSU database, press n to create one and then re-execute cadmus tags create . From there usually you will want to extract both types of tags so press b , cadmus will sync the tags between your notes and TMSU 1","title":"How Do I use it"},{"location":"tags/create.html#when-would-this-be-used","text":"This needs to be used every time your tags are changed in order to bring tmsu back in sync, otherwise when you look for tags it won't show the correct notes.","title":"When Would This Be Used"},{"location":"tags/create.html#example","text":"","title":"Example"},{"location":"tags/create.html#how-does-it-work","text":"","title":"How does it Work"},{"location":"tags/create.html#hash-tags","text":"Hash tags are easy, just use ripgrep with pcre2 : rg --pcre2 '(?<=\\s#)[a-zA-Z]+(?=\\s)' -t markdown -o $NOTE_DIR \\ | sed s+:+ \\ + | sed s/^/tmsu \\ tag \\ /","title":"Hash tags"},{"location":"tags/create.html#yaml-tags","text":"This is a little more involved, it's essentially a couple of `for`` loops over the files, I did it in R first but it was too slow so I redid it in NodeJS , checkout these files for the source code: /bin/tags/yaml-parse.js /home/ryan/.cadmus/bin/tags/ListTags.R","title":"YAML Tags"},{"location":"tags/create.html#integrating-with-vim","text":"I put these lines in my .vimrc to generate a list and filter tags using FZF.vim: imap < expr > < C - c >< C - y > fzf# vim # complete ( 'node ~/bin/printMarkdownTags/yaml-parse.js $HOME/Notes/MD/notes \\| sort -u' ) imap < expr > < C - c >< C - t > fzf# vim # complete ( 'rg --pcre2 \"\\s#[a-zA-Z-@]+\\s\" -o --no-filename $HOME/Notes/MD -t md \\| sort -u' )","title":"Integrating with Vim"},{"location":"tags/create.html#dependencies","text":"This requires, TMSU, nodejs and ripgrep with pcre2. I played with the idea of avoiding TMSU but it works really well and the Virtual File System is really neat. \u21a9","title":"Dependencies"},{"location":"tools/BackLinks.html","text":"Note Start this with cadmus tools backlinks What does it do \u00b6 This takes a notes path from the clipboard and displays in the terminal any files that link to it using either: [markdown](./links.md) [[wiki-links]] How Do I use it \u00b6 Copy a note path to the clipboard then run cadmus tools backlinks , any notes that link to it will be displayed in the terminal. When Would This Be Used \u00b6 This is handy when you have some piece of code, somewhere, that you can't find but you're sure you linked to. Example \u00b6 How does it Work \u00b6 This is just more ripgrep : rg -e \"\\[.*\\]\\(.* $term \\.md\\)\" -e \"\\[\\[ $term \\]\\]\" -e \"\\[\\[ $term .*\\]\\]\" \\ ~/Notes/MD/notes \\ -t markdown -ol Note See the script in /bin/tools/List-Backlinks.sh","title":"Display Back Links"},{"location":"tools/BackLinks.html#what-does-it-do","text":"This takes a notes path from the clipboard and displays in the terminal any files that link to it using either: [markdown](./links.md) [[wiki-links]]","title":"What does it do"},{"location":"tools/BackLinks.html#how-do-i-use-it","text":"Copy a note path to the clipboard then run cadmus tools backlinks , any notes that link to it will be displayed in the terminal.","title":"How Do I use it"},{"location":"tools/BackLinks.html#when-would-this-be-used","text":"This is handy when you have some piece of code, somewhere, that you can't find but you're sure you linked to.","title":"When Would This Be Used"},{"location":"tools/BackLinks.html#example","text":"","title":"Example"},{"location":"tools/BackLinks.html#how-does-it-work","text":"This is just more ripgrep : rg -e \"\\[.*\\]\\(.* $term \\.md\\)\" -e \"\\[\\[ $term \\]\\]\" -e \"\\[\\[ $term .*\\]\\]\" \\ ~/Notes/MD/notes \\ -t markdown -ol Note See the script in /bin/tools/List-Backlinks.sh","title":"How does it Work"},{"location":"tools/New.html","text":"Note Start this with cadmus tools new What does it do \u00b6 This provides a dialog that sets the title, heading and filename of a note, offers tags to apply and offers fuzzy search for the appropriate directory to save the note in. How Do I use it \u00b6 After running the command multiple tags will be displayed, filter the tags by typing and use Tab to selet multiple tags and Enter to continue. Next a directory list will be presented, search through the directories by typing in the name of a directory. Finally a dialog to type in a name for the title, heading and filename (which will be made to be identical) will be offered, type in title: Spaces are fine No extension The file name will be slugified with - and the extension .md will be applied. When Would This Be Used \u00b6 This is great when you want to quickly make a new note in the right place with the right tags. Example \u00b6 How does it Work \u00b6 This just uses TMSU and Skim to choose the directories and tags.","title":"New Note"},{"location":"tools/New.html#what-does-it-do","text":"This provides a dialog that sets the title, heading and filename of a note, offers tags to apply and offers fuzzy search for the appropriate directory to save the note in.","title":"What does it do"},{"location":"tools/New.html#how-do-i-use-it","text":"After running the command multiple tags will be displayed, filter the tags by typing and use Tab to selet multiple tags and Enter to continue. Next a directory list will be presented, search through the directories by typing in the name of a directory. Finally a dialog to type in a name for the title, heading and filename (which will be made to be identical) will be offered, type in title: Spaces are fine No extension The file name will be slugified with - and the extension .md will be applied.","title":"How Do I use it"},{"location":"tools/New.html#when-would-this-be-used","text":"This is great when you want to quickly make a new note in the right place with the right tags.","title":"When Would This Be Used"},{"location":"tools/New.html#example","text":"","title":"Example"},{"location":"tools/New.html#how-does-it-work","text":"This just uses TMSU and Skim to choose the directories and tags.","title":"How does it Work"},{"location":"tools/Summary.html","text":"Summary \u00b6 Note I intend to write up more documentation as time permits, University keeps me busy though. Command Description fix This interactively repairs a relative link, that is broken, from the clipboard link This provides an dialog to generate links between files. page-import This replaces a URL in the clipboard with markdown converted from the website random This opens a random page in the default .md app rename This renames a note and uses sed to fix any links","title":"Summary"},{"location":"tools/Summary.html#summary","text":"Note I intend to write up more documentation as time permits, University keeps me busy though. Command Description fix This interactively repairs a relative link, that is broken, from the clipboard link This provides an dialog to generate links between files. page-import This replaces a URL in the clipboard with markdown converted from the website random This opens a random page in the default .md app rename This renames a note and uses sed to fix any links","title":"Summary"},{"location":"tools/webtitle.html","text":"Note Start this with cadmus tools webtitle What does it do \u00b6 This transforms a URL in the clipboard into a formatted link How Do I use it \u00b6 Copy / Paste a URL then type cadmus tools webtitle , the clipboard should be transformed into a formatted link with the right title. When Would This Be Used \u00b6 This is great for footnotes. Example \u00b6 How does it Work \u00b6 So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 1 This is the code that achieves it: sk -m -i -c 'recoll -b -t -q \"ext:md\" {} |\\ cut -c 8- | sed s/^/realpath\\ \\\"/ |\\ sed s+\\$+\\\"\\ --relative-to\\ \\\"./\\\"+ | bash' \\ --bind pgup:preview-page-up,pgdn:preview-page-down \\ --preview \"bat --color=always --line-range :500 \\ --terminal-width 80 --theme=TwoDark {+} \\ --italic-text=always \\ --decorations=always\" \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"Print Web Title"},{"location":"tools/webtitle.html#what-does-it-do","text":"This transforms a URL in the clipboard into a formatted link","title":"What does it do"},{"location":"tools/webtitle.html#how-do-i-use-it","text":"Copy / Paste a URL then type cadmus tools webtitle , the clipboard should be transformed into a formatted link with the right title.","title":"How Do I use it"},{"location":"tools/webtitle.html#when-would-this-be-used","text":"This is great for footnotes.","title":"When Would This Be Used"},{"location":"tools/webtitle.html#example","text":"","title":"Example"},{"location":"tools/webtitle.html#how-does-it-work","text":"So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 1 This is the code that achieves it: sk -m -i -c 'recoll -b -t -q \"ext:md\" {} |\\ cut -c 8- | sed s/^/realpath\\ \\\"/ |\\ sed s+\\$+\\\"\\ --relative-to\\ \\\"./\\\"+ | bash' \\ --bind pgup:preview-page-up,pgdn:preview-page-down \\ --preview \"bat --color=always --line-range :500 \\ --terminal-width 80 --theme=TwoDark {+} \\ --italic-text=always \\ --decorations=always\" \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"How does it Work"}],"index":{"fieldVectors":[["title/index.html",[]],["text/index.html",[0,1.534,1,1.309,2,1.577,3,0.805,4,1.44,5,0.939,6,0.488,7,0.8,8,0.805,9,0.805,10,1.553,11,0.805,12,0.787,13,1.117,14,1.329,15,0.594,16,0.619,17,0.675,18,0.45,19,0.352,20,1.822,21,0.675,22,0.468,23,0.45,24,0.538,25,0.632,26,0.805,27,1.329,28,1.337,29,0.488,30,0.445,31,0.511,32,1.006,33,1.238,34,0.45,35,1.941,36,0.805,37,1.826,38,0.805,39,0.805,40,0.805,41,0.675,42,0.675,43,0.888,44,0.675,45,0.805,46,0.675,47,0.805,48,0.805,49,0.851,50,0.805,51,0.805,52,0.805,53,0.805,54,1.464,55,0.805,56,0.805,57,0.805,58,0.433,59,0.805,60,1.485,61,1.276,62,0.594,63,1.117,64,0.805,65,0.548,66,0.805,67,0.594,68,1.464,69,0.805,70,0.675,71,0.805,72,1.228,73,0.805,74,1.147,75,0.805,76,0.805,77,0.563,78,1.329,79,0.805,80,0.389,81,0.675,82,0.805,83,0.805,84,0.805,85,0.675,86,0.805,87,1.329,88,0.675,89,0.805,90,0.805,91,0.805,92,0.805,93,0.805,94,0.805,95,0.805,96,0.389,97,0.675,98,0.563,99,0.805,100,0.805,101,0.805,102,0.805,103,1.228,104,0.535,105,0.805,106,0.594,107,0.805,108,0.805,109,1.147,110,0.805,111,0.805,112,0.805,113,0.805,114,0.805,115,0.805,116,0.805,117,0.594,118,0.805,119,0.805,120,0.675,121,0.805,122,0.675,123,0.805,124,0.805,125,0.675,126,0.805,127,0.805,128,0.805,129,0.675,130,1.329,131,0.805,132,0.805,133,0.805,134,0.535,135,0.851,136,0.758,137,0.535,138,0.535,139,0.535,140,0.535,141,0.468,142,0.468,143,0.805,144,0.535,145,1.147,146,0.535,147,0.535,148,0.805,149,0.594,150,0.805,151,0.675,152,0.488,153,0.805,154,1.464,155,0.805,156,0.805,157,0.535,158,0.675,159,0.468,160,0.805,161,0.805,162,0.805,163,0.805,164,0.511,165,0.675,166,0.805,167,1.08,168,0.805,169,1.826,170,1.329,171,0.805,172,0.488,173,0.675,174,0.805,175,0.341,176,1.329,177,1.464,178,0.805,179,0.805,180,0.45,181,0.805,182,0.805,183,0.805,184,0.805,185,1.08,186,0.805,187,0.805,188,0.805,189,0.805,190,0.675,191,0.805,192,2.012,193,1.464,194,0.675,195,0.805,196,0.805,197,0.805,198,0.805,199,1.147,200,0.805,201,0.805,202,0.805,203,0.805,204,0.805,205,0.805,206,0.805,207,0.675,208,2.115,209,0.805,210,0.805,211,1.688,212,1.827,213,1.464,214,1.464,215,1.464,216,0.805,217,0.805,218,1.337,219,0.805,220,0.805,221,0.805,222,0.805]],["title/index.html#cadmus",[0,1.147]],["text/index.html#cadmus",[0,1.733,2,4.447,3,5.673,4,3.3,5,2.647]],["title/index.html#what-does-it-do",[]],["text/index.html#what-does-it-do",[0,1.359,6,2.698,7,1.769,8,4.448,9,4.448,10,2.763,11,4.448,12,2.392,13,2.008,14,4.038,15,3.283,16,1.882,17,3.731,18,2.486,19,1.943,20,3.629,21,3.731,22,2.587,23,2.486,24,0.832]],["title/index.html#how-does-it-work",[25,1.18]],["text/index.html#how-does-it-work",[0,1.603,26,5.248,27,4.764,28,3.488,29,3.184,30,0.617,31,3.328,32,2.623,33,2.623,34,2.933]],["title/index.html#how-do-i-use-it",[30,0.442]],["text/index.html#how-do-i-use-it",[]],["title/index.html#installation",[35,2.942]],["text/index.html#installation",[0,1.863,1,1.212,20,2.249,24,0.921,30,0.417,35,2.78,36,3.547,37,3.219,38,3.547,39,3.547,40,3.547,41,2.975,42,2.975,43,2.151,44,2.975,45,3.547,46,2.975,47,3.547,48,3.547,49,2.063,50,3.547,51,3.547,52,3.547,53,3.547,54,4.919,55,3.547,56,3.547,57,3.547,58,1.907,59,3.547,60,2.618,61,2.249,62,2.618,63,1.601]],["title/index.html#usage",[64,3.753]],["text/index.html#usage",[0,1.816,2,3.7,5,1.56,7,1.33,10,1.614,12,1.798,13,2.47,14,3.035,16,1.415,20,2.12,24,0.883,25,1.051,30,0.644,63,2.131,65,1.767,66,3.343,67,2.468,68,4.72,69,3.343,70,2.805,71,3.343,72,3.96,73,3.343,74,2.621,75,3.343,76,3.343,77,2.336,78,3.035,79,3.343,80,1.614,81,2.805,82,3.343,83,3.343,84,3.343,85,2.805]],["title/index.html#when-or-why-would-i-use-this",[30,0.442]],["text/index.html#when-or-why-would-i-use-this",[1,0.719,4,2.106,28,2.406,43,2.196,86,3.62,87,3.286,88,3.037,89,3.62,90,3.62,91,3.62,92,3.62,93,3.62,94,3.62,95,3.62,96,1.747,97,3.037,98,2.53,99,3.62,100,3.62,101,3.62,102,3.62,103,4.185,104,2.406,105,3.62,106,2.672,107,3.62,108,3.62,109,2.837,110,3.62,111,3.62,112,3.62,113,3.62,114,3.62,115,3.62,116,3.62,117,2.672,118,3.62,119,3.62,120,3.037]],["title/index.html#background",[121,3.753]],["text/index.html#background",[0,1.641,1,1.2,4,3.125,5,1.884,27,3.665,28,2.683,32,2.018,33,2.018,61,2.56,74,3.165,78,3.665,122,3.387,123,4.037,124,4.037,125,3.387,126,4.037,127,4.037,128,4.037,129,3.387,130,3.665,131,4.037,132,4.037,133,4.037,134,2.683,135,2.348,136,2.092]],["title/index.html#keyboard-bindings",[137,1.792,138,1.792]],["text/index.html#keyboard-bindings",[0,1.556,7,2.026,10,3.009,33,2.547,139,3.386,140,3.386,141,2.964,142,2.964,143,5.095,144,3.386,145,3.994]],["title/index.html#dependencies",[60,2.77]],["text/index.html#dependencies",[1,1.241,10,1.599,30,0.39,32,1.655,33,1.655,35,2.596,37,4.256,61,2.1,109,2.596,136,1.716,145,2.596,146,2.201,147,2.201,148,3.312,149,2.444,150,3.312,151,2.778,152,2.009,153,3.312,154,4.689,155,3.312,156,3.312,157,2.201,158,2.778,159,1.926,160,3.312,161,3.312,162,3.312,163,3.312,164,2.1,165,2.778,166,3.312,167,3.461,168,3.312,169,4.256,170,3.006,171,3.312,172,2.009,173,2.778,174,3.312,175,1.402]],["title/index.html#recommended-for-all-features",[170,2.448,176,2.448]],["text/index.html#recommended-for-all-features",[25,1.299,135,2.404,177,5.456,178,4.133,179,4.133,180,2.309,181,4.133,182,4.133,183,4.133,184,4.133,185,4.027,186,4.133,187,4.133,188,4.133,189,4.133,190,3.467,191,4.133,192,6.108,193,5.456,194,3.467,195,4.133,196,4.133,197,4.133]],["title/index.html#interesting-helpful-recommended-generally-not-strictly-necessary",[1,0.354,20,0.636,87,0.91,130,0.91,176,0.91,198,1.002,199,0.786]],["text/index.html#interesting-helpful-recommended-generally-not-strictly-necessary",[200,5.41,201,5.41,202,5.41,203,5.41,204,5.41,205,5.41,206,5.41,207,4.539]],["title/index.html#path",[208,2.098]],["text/index.html#path",[1,1.435,35,2.572,49,1.908,60,2.421,63,1.481,169,2.978,199,2.572,208,3.717,209,3.281,210,3.281,211,4.542,212,4.35,213,4.657,214,4.657,215,4.657,216,3.281,217,3.281,218,3.598,219,3.281,220,3.281,221,3.281,222,3.281]],["title/Convert.html",[223,2.942]],["text/Convert.html",[0,1.368,1,1.262,6,1.884,16,1.314,24,0.581,25,0.976,30,0.676,43,1.884,58,1.67,65,1.163,98,2.171,106,2.292,159,3.055,175,1.895,185,2.292,223,3.511,224,1.449,225,2.606,226,3.306,227,4.066,228,4.066,229,3.106,230,1.736,231,2.606,232,1.736,233,2.435,234,2.606,235,2.606,236,3.106,237,2.292,238,2.064,239,3.106,240,2.606,241,3.106,242,3.106,243,1.235,244,1.736,245,2.606,246,2.064,247,2.606]],["title/Convert.html#what-does-it-do",[]],["text/Convert.html#what-does-it-do",[6,3.232,175,2.255,225,4.469,226,3.932,227,4.836,228,4.836,229,5.328,230,2.977,231,4.469]],["title/Convert.html#how-do-i-use-it",[30,0.442]],["text/Convert.html#how-do-i-use-it",[0,1.451,43,2.881,58,2.554,65,1.778,159,2.763,175,2.01,185,3.506,223,3.723,226,3.506,227,4.311,228,4.311,232,2.654,233,3.723,234,3.984,235,3.984,236,4.75,237,3.506]],["title/Convert.html#when-would-this-be-used",[30,0.442]],["text/Convert.html#when-would-this-be-used",[1,1.059,30,0.627,98,3.723,106,3.932,238,3.541,239,5.328,240,4.469,241,5.328,242,5.328]],["title/Convert.html#example",[243,1.493]],["text/Convert.html#example",[244,3.39]],["title/Convert.html#how-does-it-work",[25,1.18]],["text/Convert.html#how-does-it-work",[16,2.326,30,0.646,159,3.795,245,4.61,246,3.652,247,4.61]],["title/Export.html",[212,2.77]],["text/Export.html",[0,1.386,1,1.22,6,1.918,12,1.7,16,1.338,24,1.085,25,0.994,30,0.682,33,1.581,43,1.918,58,1.7,65,1.184,80,1.526,159,3.372,185,2.334,212,3.916,224,1.475,225,2.653,232,1.767,233,4.159,234,2.653,235,2.653,243,1.258,244,1.767,245,2.653,246,2.101,247,2.653,248,3.162,249,3.162,250,2.101,251,2.21,252,2.653,253,3.162,254,2.653,255,3.162,256,3.162]],["title/Export.html#what-does-it-do",[]],["text/Export.html#what-does-it-do",[6,3.282,24,1.013,30,0.636,159,3.147,212,3.993,225,4.539,233,5.066]],["title/Export.html#how-do-i-use-it",[30,0.442]],["text/Export.html#how-do-i-use-it",[0,1.431,24,0.877,33,2.342,43,2.843,58,2.52,65,1.754,159,2.726,185,3.459,212,3.459,232,2.619,233,3.673,234,3.931,235,3.931,248,4.686,249,4.686,250,3.114,251,3.275,252,3.931]],["title/Export.html#when-would-this-be-used",[30,0.442]],["text/Export.html#when-would-this-be-used",[12,2.955,24,1.029,80,2.653,253,5.495,254,4.61,255,5.495,256,5.495]],["title/Export.html#example",[243,1.493]],["text/Export.html#example",[244,3.39]],["title/Export.html#how-does-it-work",[25,1.18]],["text/Export.html#how-does-it-work",[16,2.326,30,0.646,159,3.795,245,4.61,246,3.652,247,4.61]],["title/find.html",[10,1.812]],["text/find.html",[0,0.496,1,1.409,5,0.421,7,0.646,10,1.067,12,1.189,13,0.408,15,0.666,16,0.382,22,0.525,24,0.8,25,0.695,29,0.548,30,0.366,31,1.029,32,0.451,33,0.451,44,0.757,63,0.408,65,0.338,80,0.436,96,1.503,104,0.6,134,0.6,135,0.525,137,1.079,138,2.685,139,1.079,140,0.6,141,2.195,142,0.944,146,1.469,151,0.757,152,1.341,157,1.079,159,0.944,164,1.029,173,2.612,175,1.597,180,0.907,208,1.236,224,0.757,230,1.509,240,0.757,243,0.359,244,0.505,246,0.6,257,0.485,258,1.503,259,1.198,260,0.841,261,0.666,262,1.341,263,0.6,264,0.757,265,0.944,266,0.757,267,0.757,268,0.548,269,0.985,270,0.985,271,0.548,272,1.198,273,2.989,274,1.632,275,0.757,276,0.757,277,0.631,278,0.757,279,0.757,280,0.757,281,0.757,282,1.272,283,0.631,284,0.757,285,0.757,286,0.666,287,0.757,288,0.757,289,0.757,290,0.757,291,0.757,292,0.903,293,0.903,294,0.757,295,0.903,296,0.903,297,0.666,298,0.548,299,0.666,300,0.666,301,0.666,302,0.757,303,0.505,304,0.666,305,0.666,306,0.903,307,0.666,308,0.6,309,0.757,310,1.146,311,1.623,312,1.623,313,0.903,314,0.666,315,1.079,316,0.666,317,0.666,318,0.666,319,0.666,320,0.666,321,0.903,322,2.559,323,0.903,324,0.903,325,0.903,326,0.903,327,0.903,328,0.903,329,0.903,330,0.903,331,0.903,332,1.079,333,0.666,334,0.6,335,1.623,336,2.211,337,2.211,338,2.298,339,0.903,340,0.903,341,0.903,342,0.903,343,1.623,344,0.903,345,0.903,346,1.623,347,1.362,348,0.903,349,1.623,350,0.903,351,0.903,352,0.903,353,0.666,354,0.666,355,0.757,356,0.757,357,0.757,358,0.757,359,1.198,360,0.757,361,0.757,362,0.6,363,0.666,364,0.666,365,0.631,366,0.666,367,0.666,368,0.572]],["title/find.html#what-does-it-do",[]],["text/find.html#what-does-it-do",[10,2.695,24,1.045,224,2.605,257,3.002,258,2.695,259,4.121]],["title/find.html#how-do-i-use-it",[30,0.442]],["text/find.html#how-do-i-use-it",[1,1.116,7,1.396,15,2.591,16,1.486,24,1.051,63,1.585,65,1.314,80,1.695,96,1.695,137,2.333,139,2.333,141,2.042,142,2.042,152,2.13,175,1.486,208,1.962,230,1.962,246,2.333,258,1.695,259,2.591,260,1.819,261,2.591,262,2.963,263,2.333,264,2.945,265,2.841,266,2.945,267,2.945,268,2.13,269,2.13,270,2.13,271,2.13,272,2.591,273,2.454,274,2.591,275,2.945,276,2.945]],["title/find.html#keyboard-shortcuts",[137,1.792,139,1.792]],["text/find.html#keyboard-shortcuts",[1,0.759,13,1.723,22,2.22,24,1.098,96,1.843,140,2.537,141,3.009,175,1.616,208,2.891,230,3.28,258,1.843,269,2.316,270,2.316,273,3.616,274,3.819,277,2.668,278,3.202,279,3.202,280,3.202,281,3.202,282,2.992,283,2.668,284,3.202,285,3.202,286,2.817,287,3.202,288,3.202]],["title/find.html#when-would-this-be-used",[30,0.442]],["text/find.html#when-would-this-be-used",[0,1.394,1,1.273,10,2.203,31,2.894,141,2.655,142,2.655,180,3.252,260,2.365,272,3.368,289,3.828,290,3.828,291,3.828,292,4.564,293,4.564,294,3.828,295,4.564,296,4.564]],["title/find.html#example",[243,1.493]],["text/find.html#example",[]],["title/find.html#how-does-it-work",[25,1.18]],["text/find.html#how-does-it-work",[1,1.438,5,0.61,7,0.52,12,1.591,24,0.245,25,0.707,29,0.793,30,0.348,31,0.829,32,0.654,33,0.654,44,1.097,96,1.428,104,0.869,134,0.869,135,0.761,138,3.248,141,1.721,146,1.966,151,1.097,152,1.364,157,1.494,159,1.308,164,1.426,173,3.321,175,1.675,240,1.097,244,0.731,258,1.086,262,0.793,273,3.021,282,1.025,297,0.965,298,0.793,299,0.965,300,0.965,301,0.965,302,1.097,303,0.731,304,0.965,305,0.965,306,1.308,307,0.965,308,0.869,309,1.097,310,1.533,311,2.249,312,2.249,313,1.308,314,0.965,315,1.494,316,0.965,317,0.965,318,0.965,319,0.965,320,0.965,321,1.308,322,3.191,323,1.308,324,1.308,325,1.308,326,1.308,327,1.308,328,1.308,329,1.308,330,1.308,331,1.308,332,1.494,333,0.965,334,0.869,335,2.249,336,2.959,337,2.959,338,2.922,339,1.308,340,1.308,341,1.308,342,1.308,343,2.249,344,1.308,345,1.308,346,2.249,347,1.886,348,1.308,349,2.249,350,1.308,351,1.308,352,1.308,353,0.965,354,0.965,355,1.097,356,1.097,357,1.097,358,1.097,359,1.66,360,1.097,361,1.097,362,0.869,363,0.965,364,0.965,365,0.914,366,0.965,367,0.965,368,0.829]],["title/preview.html",[258,1.812]],["text/preview.html",[0,1.589,1,1.254,5,1.424,24,1.133,25,0.959,30,0.612,58,1.641,63,1.377,65,1.142,135,2.572,224,2.063,232,1.705,243,1.214,244,1.705,254,2.56,258,2.922,303,1.705,369,4.363,370,2.77,371,3.052,372,3.052,373,4.014,374,3.052,375,3.052,376,3.052,377,2.028,378,3.052,379,3.052,380,3.052,381,3.052,382,2.56,383,3.052,384,3.052,385,3.052,386,3.052,387,2.56]],["title/preview.html#what-does-it-do",[]],["text/preview.html#what-does-it-do",[5,2.524,24,1.013,63,2.442,224,2.524,303,3.023,369,4.539,370,4.911,371,5.41]],["title/preview.html#how-do-i-use-it",[30,0.442]],["text/preview.html#how-do-i-use-it",[0,1.887,24,0.94,58,2.701,65,1.88,232,2.806,258,2.982,369,4.213,372,5.022,373,4.559,374,5.022,375,5.022]],["title/preview.html#when-would-this-be-used",[30,0.442]],["text/preview.html#when-would-this-be-used",[1,0.919,24,1.098,135,3.413,254,3.879,258,2.832,373,4.198,376,4.624,377,3.073,378,4.624,379,4.624,380,4.624,381,4.624,382,3.879,383,4.624,384,4.624,385,4.624]],["title/preview.html#example",[243,1.493]],["text/preview.html#example",[244,3.39]],["title/preview.html#how-does-it-work",[25,1.18]],["text/preview.html#how-does-it-work",[30,0.678,369,4.838,386,5.767,387,4.838]],["title/search.html",[16,1.589]],["text/search.html",[0,0.612,1,1.361,5,0.534,7,0.797,10,0.553,13,0.517,16,1.543,22,1.166,24,0.901,25,0.84,29,1.216,30,0.429,31,0.726,32,0.572,33,0.572,49,0.666,58,0.616,61,1.271,62,0.845,63,0.517,65,0.429,80,0.553,88,0.961,96,1.548,104,0.761,134,0.761,135,0.666,137,1.332,138,0.761,139,1.332,140,0.761,141,1.866,142,1.555,144,1.332,145,0.898,146,1.776,147,0.761,152,1.621,157,1.332,172,1.216,175,0.848,180,1.12,208,1.493,218,0.761,224,0.935,230,1.792,232,0.64,243,0.455,244,0.64,246,0.761,250,0.761,257,0.616,258,1.76,259,1.479,260,1.038,262,1.216,263,0.761,264,0.961,265,1.166,266,0.961,267,0.961,268,0.695,269,1.216,270,1.216,271,0.695,272,1.479,273,1.868,274,1.973,275,0.961,276,0.961,277,0.8,278,0.961,279,0.961,280,0.961,281,0.961,282,0.898,283,0.8,284,0.961,285,0.961,286,0.845,287,0.961,288,0.961,289,0.961,290,0.961,291,0.961,294,0.961,297,0.845,298,0.695,299,0.845,300,0.845,301,0.845,302,0.961,303,0.64,304,0.845,305,0.845,307,0.845,308,1.332,310,0.593,314,0.845,315,0.761,316,0.845,317,0.845,318,0.845,319,0.845,320,0.845,322,0.845,332,1.332,333,0.845,334,0.761,353,0.845,354,0.845,355,0.961,356,0.961,357,0.961,358,0.961,359,1.479,360,0.961,361,0.961,362,0.761,363,0.845,364,0.845,365,0.8,366,0.845,367,0.845,368,0.726,388,1.145,389,1.145,390,0.761,391,0.961,392,1.145,393,2.004,394,1.145,395,1.145,396,0.961,397,1.145,398,0.961,399,0.845,400,0.961,401,0.961,402,0.961,403,0.8,404,0.961,405,0.961,406,0.961,407,0.961,408,2.004,409,1.145]],["title/search.html#what-does-it-do",[]],["text/search.html#what-does-it-do",[16,2.363,24,1.045,224,2.605,257,3.002,258,2.695,259,4.121]],["title/search.html#how-do-i-use-it",[30,0.442]],["text/search.html#how-do-i-use-it",[1,1.171,7,1.305,16,1.388,24,1.013,58,1.764,61,2.08,62,2.421,63,1.481,65,1.228,80,1.584,96,1.584,137,2.18,139,2.18,141,1.908,142,1.908,152,1.99,175,1.388,208,1.833,218,2.18,230,1.833,232,1.833,246,2.18,250,2.18,258,1.584,259,2.421,260,1.7,262,1.99,263,2.18,264,2.752,265,2.709,266,2.752,267,2.752,268,1.99,269,1.99,270,1.99,271,1.99,272,2.421,273,2.293,274,2.421,275,2.752,276,2.752,282,2.572,388,3.281,389,3.281]],["title/search.html#keyboard-shortcuts",[137,1.792,139,1.792]],["text/search.html#keyboard-shortcuts",[1,0.759,13,1.723,22,2.22,24,1.098,96,1.843,140,2.537,141,3.009,175,1.616,208,2.891,230,3.28,258,1.843,269,2.316,270,2.316,273,3.616,274,3.819,277,2.668,278,3.202,279,3.202,280,3.202,281,3.202,283,2.668,284,3.202,285,3.202,286,2.817,287,3.202,288,3.202,302,3.202]],["title/search.html#when-would-this-be-used",[30,0.442]],["text/search.html#when-would-this-be-used",[0,1.342,1,0.873,16,1.859,88,3.684,141,2.555,142,2.555,180,3.173,260,2.276,272,3.242,289,3.684,290,3.684,291,3.684,294,3.684,390,2.919,391,3.684,392,4.392,393,5.677,394,4.392,395,4.392,396,3.684,397,4.392]],["title/search.html#example",[243,1.493]],["text/search.html#example",[]],["title/search.html#how-does-it-work",[25,1.18]],["text/search.html#how-does-it-work",[1,1.409,5,0.93,7,0.792,10,0.962,16,0.843,22,1.159,24,0.373,25,1.003,29,1.936,30,0.47,31,1.263,32,0.996,33,0.996,49,1.159,61,1.263,96,1.541,104,1.324,134,1.324,135,1.159,138,1.324,142,1.159,144,2.121,145,1.562,146,2.654,147,1.324,152,1.936,157,2.121,172,1.936,244,1.113,258,1.541,262,1.209,297,1.47,298,1.209,299,1.47,300,1.47,301,1.47,303,1.113,304,1.47,305,1.47,307,1.47,308,2.121,310,1.032,314,1.47,315,1.324,316,1.47,317,1.47,318,1.47,319,1.47,320,1.47,322,1.47,332,2.121,333,1.47,334,1.324,353,1.47,354,1.47,355,1.671,356,1.671,357,1.671,358,1.671,359,2.356,360,1.671,361,1.671,362,1.324,363,1.47,364,1.47,365,1.392,366,1.47,367,1.47,368,1.263,398,1.671,399,1.47,400,1.671,401,1.671,402,1.671,403,1.392,404,1.671,405,1.671,406,1.671,407,1.671,408,3.192,409,1.992]],["title/Misc/Summary-Misc.html",[410,3.149]],["text/Misc/Summary-Misc.html",[0,1.629,1,1.273,4,2.322,7,1.587,24,0.747,30,0.627,41,3.348,65,1.494,80,1.927,96,1.927,98,2.789,190,3.348,224,1.862,411,4.472,412,3.991,413,3.991,414,3.348,415,2.652,416,3.129,417,3.348,418,3.991,419,3.991,420,3.991,421,3.991,422,3.991]],["title/Misc/Summary-Misc.html#what-does-it-do",[]],["text/Misc/Summary-Misc.html#what-does-it-do",[4,3.147,41,4.539,96,2.612,412,5.41,413,5.41,414,4.539,415,3.595,416,4.241]],["title/Misc/Summary-Misc.html#how-do-i-use-it",[30,0.442]],["text/Misc/Summary-Misc.html#how-do-i-use-it",[0,1.705,1,1.109,7,2.22,65,2.09,411,4.683,417,4.683]],["title/Misc/Summary-Misc.html#when-would-this-be-used",[30,0.442]],["text/Misc/Summary-Misc.html#when-would-this-be-used",[80,2.612,98,3.781,190,4.539,418,5.41,419,5.41,420,5.41,421,5.41,422,5.41]],["title/Misc/windows.html",[415,2.494]],["text/Misc/windows.html",[0,1.426,1,1.312,5,1.186,18,2.158,24,0.723,25,0.799,30,0.613,46,2.132,49,1.479,58,1.367,62,1.876,63,1.147,65,0.952,67,1.876,80,1.227,135,1.479,147,1.689,149,2.85,180,1.421,218,1.689,224,1.186,232,1.421,237,1.876,243,1.011,244,1.421,250,1.689,251,1.777,257,1.367,260,1.317,261,1.876,265,1.479,268,1.542,309,2.132,338,1.876,347,2.132,377,1.689,398,2.132,411,3.916,414,2.132,415,3.923,423,2.898,424,3.505,425,4.733,426,2.542,427,3.861,428,2.542,429,3.861,430,2.132,431,2.542,432,2.542,433,2.132]],["title/Misc/windows.html#what-does-it-do",[]],["text/Misc/windows.html#what-does-it-do",[5,2.605,251,3.902,261,4.121,338,4.121,415,3.71,424,5.068]],["title/Misc/windows.html#how-do-i-use-it",[30,0.442]],["text/Misc/windows.html#how-do-i-use-it",[0,1.667,18,2.309,24,0.773,58,2.222,62,3.05,63,1.865,65,1.547,218,2.746,232,2.309,250,2.746,257,2.222,260,2.141,265,2.404,268,2.507,411,4.577,414,3.467,415,4.059,425,3.752,426,4.133,427,5.456,428,4.133,429,5.456]],["title/Misc/windows.html#when-would-this-be-used",[30,0.442]],["text/Misc/windows.html#when-would-this-be-used",[30,0.608,80,2.496,135,3.008,180,2.889,237,3.816,377,3.436,415,3.436,424,4.694,430,4.337,431,5.171,432,5.171]],["title/Misc/windows.html#example",[243,1.493]],["text/Misc/windows.html#example",[]],["title/Misc/windows.html#todo",[244,2.098]],["text/Misc/windows.html#todo",[]],["title/Misc/windows.html#how-does-it-work",[25,1.18]],["text/Misc/windows.html#how-does-it-work",[1,1.341,18,2.55,30,0.537,46,3.828,49,2.655,67,3.368,147,3.033,149,4.295,309,3.828,347,3.828,398,3.828,415,3.033,425,5.815,433,3.828]],["title/Tools/New.html",[24,0.505,434,1.99]],["text/Tools/New.html",[1,1.165,24,1.097,434,4.328]],["title/Tools/New.html#new-note",[24,0.505,434,1.99]],["text/Tools/New.html#new-note",[]],["title/tags/Filter.html",[18,2.098]],["text/tags/Filter.html",[0,0.503,1,1.346,2,1.29,7,0.654,10,1.318,13,0.743,16,0.696,18,1.526,19,2.746,24,0.763,25,0.517,28,1.094,30,0.412,34,0.92,49,0.957,63,1.233,65,0.616,72,1.381,74,1.29,77,1.15,96,0.794,103,1.381,117,1.215,120,1.381,136,2.112,180,0.92,199,1.29,207,1.381,211,2.291,224,1.274,238,1.094,243,0.654,262,1.657,263,1.094,265,2.037,268,0.998,269,0.998,270,1.657,271,0.998,277,2.447,310,1.415,334,1.094,338,2.016,377,1.094,387,1.381,390,1.094,396,1.381,417,1.381,430,1.381,435,2.937,436,1.646,437,2.744,438,1.215,439,2.731,440,1.381,441,1.646,442,1.646,443,1.646,444,3.7,445,1.646,446,1.646,447,2.731,448,1.646,449,1.646,450,1.646,451,1.646,452,1.646,453,1.646,454,1.646,455,1.646,456,1.646,457,1.646,458,1.646,459,1.646,460,1.646,461,1.646,462,1.646,463,1.646,464,1.646,465,1.646,466,1.646,467,2.731,468,2.731,469,1.646,470,1.646,471,2.291,472,1.646,473,2.731,474,1.646]],["title/tags/Filter.html#what-does-it-do",[]],["text/tags/Filter.html#what-does-it-do",[1,0.97,18,2.728,19,2.887,24,0.914,72,4.095,77,3.412,120,4.095,136,3.146,199,3.827,435,4.095,436,4.882,437,3.827]],["title/tags/Filter.html#how-do-i-use-it",[30,0.442]],["text/tags/Filter.html#how-do-i-use-it",[1,0.652,7,1.305,10,1.584,13,1.481,16,1.388,19,2.906,24,0.614,34,1.833,65,1.228,96,1.584,136,1.7,207,2.752,224,1.531,262,2.825,263,2.18,265,2.709,268,1.99,271,1.99,277,3.255,310,1.7,334,2.18,338,3.438,435,2.752,438,2.421,439,4.657,440,2.752,441,3.281,442,3.281,443,3.281,444,4.916,445,3.281,446,3.281,447,4.657,448,3.281,449,3.281,450,3.281]],["title/tags/Filter.html#when-would-this-be-used",[30,0.442]],["text/tags/Filter.html#when-would-this-be-used",[2,3.673,24,0.877,63,2.671,103,3.931,180,2.619,238,3.114,451,4.686,452,4.686,453,4.686,454,4.686,455,4.686,456,4.686,457,4.686,458,4.686,459,4.686,460,4.686,461,4.686]],["title/tags/Filter.html#example",[243,1.493]],["text/tags/Filter.html#example",[]],["title/tags/Filter.html#how-does-it-work",[25,1.18]],["text/tags/Filter.html#how-does-it-work",[1,1.426,10,1.46,19,2.261,28,2.011,30,0.356,49,1.76,74,2.372,117,2.233,136,1.568,211,3.686,265,1.76,269,1.835,270,2.666,277,2.114,310,1.568,377,2.011,387,2.538,390,2.011,396,2.538,417,2.538,430,2.538,435,2.538,437,3.445,444,2.746,462,3.025,463,3.025,464,3.025,465,3.025,466,3.025,467,4.394,468,4.394,469,3.025,470,3.025,471,3.686,472,3.025,473,4.394,474,3.025]],["title/tags/create.html",[77,2.623]],["text/tags/create.html",[0,0.849,1,1.405,7,0.479,12,0.647,13,1.254,18,0.673,19,2.496,20,0.763,24,0.52,25,0.873,29,0.73,30,0.443,32,1.047,34,0.673,43,1.27,58,0.647,60,0.889,65,0.451,70,1.01,77,1.942,80,0.581,97,1.01,98,0.841,117,1.546,122,1.01,129,1.01,134,1.392,136,2.139,144,0.8,149,1.546,158,1.01,164,1.328,167,2.452,172,1.27,224,0.977,232,0.673,237,0.889,243,0.479,257,0.647,260,1.085,265,1.218,271,0.73,283,1.463,286,0.889,298,0.73,303,0.673,308,2.743,310,1.44,315,0.8,362,0.8,377,0.8,382,1.01,390,0.8,391,1.01,399,0.889,403,1.463,416,1.641,433,1.01,437,0.944,438,0.889,440,1.01,471,1.757,475,1.373,476,1.373,477,1.373,478,1.373,479,1.373,480,1.901,481,1.204,482,1.901,483,1.204,484,1.204,485,1.204,486,1.204,487,1.204,488,1.204,489,1.204,490,1.204,491,1.204,492,1.204,493,1.204,494,1.093,495,1.204,496,1.204,497,1.204,498,1.901,499,1.204,500,1.204,501,1.901,502,1.204,503,1.204,504,1.204,505,1.204,506,0.889,507,1.204,508,1.204,509,1.204,510,1.204,511,1.204,512,1.901,513,1.204,514,1.204,515,1.901,516,1.204,517,1.204,518,2.522,519,1.204,520,1.204,521,1.204,522,2.094,523,2.094,524,2.094,525,1.204,526,1.204,527,2.094,528,1.204,529,1.204,530,0.944,531,1.204,532,0.8,533,1.204,534,1.204,535,1.204,536,1.204,537,1.204]],["title/tags/create.html#what-does-it-do",[]],["text/tags/create.html#what-does-it-do",[1,0.998,19,2.699,43,3.047,136,2.602,224,2.343,257,2.701,298,3.047,480,4.559,481,5.022,482,4.559,483,5.022,484,5.022]],["title/tags/create.html#how-do-i-use-it",[30,0.442]],["text/tags/create.html#how-do-i-use-it",[0,1.58,1,1.028,7,1.518,19,2.564,24,0.714,34,2.133,65,1.429,77,3.616,80,1.843,136,2.681,144,2.537,237,2.817,260,2.681,265,3.009,271,2.316,362,2.537,399,2.817,416,2.992,440,3.202,480,3.465,485,3.817,486,3.817,487,3.817,488,3.817,489,3.817,490,3.817,491,3.817]],["title/tags/create.html#when-would-this-be-used",[30,0.442]],["text/tags/create.html#when-would-this-be-used",[19,2.607,24,0.889,30,0.559,70,3.984,136,2.461,377,3.156,390,3.156,391,3.984,416,3.723,437,3.723,492,4.75,493,4.75,494,4.311,495,4.75,496,4.75,497,4.75]],["title/tags/create.html#example",[243,1.493]],["text/tags/create.html#example",[]],["title/tags/create.html#how-does-it-work",[25,1.18]],["text/tags/create.html#how-does-it-work",[]],["title/tags/create.html#hash-tags",[19,1.178,498,2.448]],["text/tags/create.html#hash-tags",[1,1.44,12,2.196,19,2.365,30,0.481,32,2.042,164,2.59,167,3.996,172,3.284,283,2.854,310,2.116,403,2.854,498,3.708,499,4.084,500,4.084,501,3.708,502,4.084,503,4.084,504,4.084]],["title/tags/create.html#yaml-tags",[19,1.178,482,2.448]],["text/tags/create.html#yaml-tags",[1,0.884,13,2.583,29,2.698,97,3.731,117,3.283,129,3.731,303,2.486,382,3.731,433,3.731,505,4.448,506,3.283,507,4.448,508,4.448,509,4.448,510,4.448,511,4.448,512,4.038,513,4.448,514,4.448,515,4.038,516,4.448]],["title/tags/create.html#integrating-with-vim",[517,2.696,518,2.448]],["text/tags/create.html#integrating-with-vim",[1,1.452,18,1.621,19,1.267,20,1.839,30,0.341,149,3.145,158,2.433,164,1.839,167,2.14,283,2.027,286,2.14,308,4.12,310,2.208,315,1.927,403,2.027,438,2.14,471,3.574,501,2.633,515,2.633,518,3.868,519,2.9,520,2.9,521,2.9,522,4.261,523,4.261,524,4.261,525,2.9,526,2.9,527,4.261,528,2.9,529,2.9,530,2.273,531,2.9,532,1.927]],["title/tags/create.html#dependencies",[60,2.77]],["text/tags/create.html#dependencies",[1,0.931,13,2.115,25,1.473,32,2.342,43,2.843,122,3.931,134,3.932,136,3.066,167,3.459,232,2.619,512,4.254,533,4.686,534,4.686,535,4.686,536,4.686,537,4.686]],["title/tools/BackLinks.html",[23,1.176,34,1.176,494,1.91]],["text/tools/BackLinks.html",[0,1.22,1,1.394,4,2.323,5,1.863,10,1.283,12,1.429,13,1.2,17,4.024,21,3.35,23,2.98,24,1.07,25,0.835,28,1.766,30,0.564,32,1.329,34,2.232,65,0.995,106,1.962,164,1.685,165,2.23,175,1.69,180,1.485,208,2.232,224,1.24,230,1.485,243,1.057,303,1.485,310,1.377,506,1.962,532,1.766,538,2.658,539,2.658,540,2.658,541,2.658,542,2.658,543,2.658,544,4.797,545,2.658,546,2.658,547,2.658,548,2.658,549,2.658]],["title/tools/BackLinks.html#what-does-it-do",[]],["text/tools/BackLinks.html#what-does-it-do",[5,2.377,13,2.3,23,3.483,24,0.954,30,0.599,34,2.847,106,3.761,175,2.156,208,2.847,538,5.095,539,5.095]],["title/tools/BackLinks.html#how-do-i-use-it",[30,0.442]],["text/tools/BackLinks.html#how-do-i-use-it",[0,1.534,1,0.998,4,2.921,5,2.343,21,4.213,23,2.806,24,1.156,34,2.806,65,1.88,175,2.125,208,2.806,230,2.806]],["title/tools/BackLinks.html#when-would-this-be-used",[30,0.442]],["text/tools/BackLinks.html#when-would-this-be-used",[10,2.572,23,2.977,165,4.469,180,2.977,303,2.977,540,5.328,541,5.328,542,5.328,543,5.328]],["title/tools/BackLinks.html#example",[243,1.493]],["text/tools/BackLinks.html#example",[]],["title/tools/BackLinks.html#how-does-it-work",[25,1.18]],["text/tools/BackLinks.html#how-does-it-work",[1,1.43,12,2.249,17,5.154,24,0.783,28,2.779,32,2.09,164,2.652,310,2.167,506,3.087,532,2.779,544,6.144,545,4.182,546,4.182,547,4.182,548,4.182,549,4.182]],["title/tools/New.html",[24,0.505,434,1.99]],["text/tools/New.html",[0,0.714,1,1.073,4,1.36,6,1.418,7,0.93,13,1.055,15,3.271,16,1.533,18,1.307,19,2.495,24,0.934,25,0.735,30,0.587,33,1.169,34,1.307,42,1.962,63,2.437,65,0.875,67,1.726,80,1.129,85,3.038,109,1.833,136,1.212,194,3.038,218,1.554,224,1.091,238,1.554,243,0.93,251,3.097,252,1.962,257,1.947,260,2.586,261,1.726,263,1.554,268,1.418,368,2.296,434,2.673,438,1.726,530,2.839,532,1.554,550,3.271,551,3.287,552,3.287,553,2.338,554,2.338,555,2.338,556,2.338,557,2.338,558,2.338,559,2.338,560,2.338,561,2.338,562,2.338,563,2.338,564,2.338,565,2.338]],["title/tools/New.html#what-does-it-do",[]],["text/tools/New.html#what-does-it-do",[6,2.881,16,2.01,19,2.075,24,1.117,63,2.144,218,3.156,251,4.17,257,2.554,261,3.506,530,3.723,550,3.506,551,4.311,552,4.311,553,4.75,554,4.75]],["title/tools/New.html#how-do-i-use-it",[30,0.442]],["text/tools/New.html#how-do-i-use-it",[7,1.356,13,1.538,15,4.081,16,1.442,18,1.905,19,2.416,30,0.401,34,1.905,42,2.859,63,2.496,65,1.276,67,2.516,85,4.014,194,4.014,251,2.382,257,1.833,260,3.106,263,2.265,268,2.068,438,2.516,530,2.672,532,2.265,550,3.532,551,3.094,552,3.094,555,3.408,556,3.408,557,3.408,558,3.408,559,3.408,560,3.408,561,3.408,562,3.408,563,3.408]],["title/tools/New.html#when-would-this-be-used",[30,0.442]],["text/tools/New.html#when-would-this-be-used",[19,2.293,24,0.982,80,2.533,109,4.114,238,3.488,368,4.024,434,3.873,564,5.248,565,5.248]],["title/tools/New.html#example",[243,1.493]],["text/tools/New.html#example",[]],["title/tools/New.html#how-does-it-work",[25,1.18]],["text/tools/New.html#how-does-it-work",[19,2.439,30,0.657,33,2.791,63,2.52,136,2.893,252,4.683]],["title/tools/Summary.html",[410,3.149]],["text/tools/Summary.html",[1,0.64,6,1.953,7,1.281,12,1.732,13,1.453,20,2.042,22,1.873,23,3.266,24,0.86,30,0.379,81,2.701,96,1.554,125,2.701,140,2.14,144,2.14,172,1.953,175,1.945,223,2.524,250,2.14,257,1.732,269,1.953,270,1.953,298,1.953,332,3.054,390,2.14,410,2.701,506,2.377,532,2.14,566,3.22,567,3.22,568,3.22,569,3.22,570,3.22,571,3.22,572,3.22,573,4.596,574,3.22,575,3.22,576,3.22,577,2.524,578,3.22,579,4.596,580,4.596]],["title/tools/Summary.html#summary",[410,3.149]],["text/tools/Summary.html#summary",[6,1.99,7,1.305,12,1.764,13,1.481,20,2.08,22,1.908,23,3.294,24,0.872,30,0.386,81,2.752,96,1.584,125,2.752,140,2.18,144,2.18,172,1.99,175,1.971,223,2.572,250,2.18,257,1.764,269,1.99,270,1.99,298,1.99,332,3.095,390,2.18,506,2.421,532,2.18,566,3.281,567,3.281,568,3.281,569,3.281,570,3.281,571,3.281,572,3.281,573,4.657,574,3.281,575,3.281,576,3.281,577,2.572,578,3.281,579,4.657,580,4.657]],["title/tools/webtitle.html",[370,1.91,550,1.553,581,2.398]],["text/tools/webtitle.html",[0,0.941,1,1.407,4,1.791,5,0.889,7,0.758,22,1.108,23,1.721,24,0.576,25,0.968,29,1.156,30,0.575,31,1.208,32,0.952,33,0.952,49,1.108,61,1.208,104,1.266,138,1.266,142,1.108,146,2.576,147,1.266,152,1.868,157,2.047,172,1.868,175,1.303,224,0.889,226,2.273,230,1.065,231,1.598,238,1.266,243,0.758,258,1.487,260,0.987,262,1.156,271,1.156,297,1.406,298,1.156,299,1.406,300,1.406,301,1.406,303,1.065,304,1.406,305,1.406,307,1.406,308,2.047,310,0.987,314,1.406,315,1.266,316,1.406,317,1.406,318,1.406,319,1.406,320,1.406,322,1.406,332,2.047,333,1.406,334,1.266,353,1.406,354,1.406,359,1.406,362,1.266,363,1.406,364,1.406,365,2.152,366,1.406,367,1.406,368,1.953,399,1.406,400,1.598,401,1.598,402,1.598,403,1.332,404,1.598,405,1.598,406,1.598,407,1.598,550,1.406,577,2.414,582,3.08,583,2.796]],["title/tools/webtitle.html#what-does-it-do",[]],["text/tools/webtitle.html#what-does-it-do",[23,3.17,175,2.401,226,4.187,577,4.447,583,5.15]],["title/tools/webtitle.html#how-do-i-use-it",[30,0.442]],["text/tools/webtitle.html#how-do-i-use-it",[0,1.491,1,1.206,4,2.84,23,2.728,175,2.066,226,3.603,230,2.728,231,4.095,260,2.53,368,3.095,550,3.603,577,3.827,582,4.882,583,4.432]],["title/tools/webtitle.html#when-would-this-be-used",[30,0.442]],["text/tools/webtitle.html#when-would-this-be-used",[238,3.963,365,4.167]],["title/tools/webtitle.html#example",[243,1.493]],["text/tools/webtitle.html#example",[]],["title/tools/webtitle.html#how-does-it-work",[25,1.18]],["text/tools/webtitle.html#how-does-it-work",[1,1.398,5,1.106,7,0.943,22,1.379,24,0.444,25,0.745,29,1.438,30,0.526,31,1.503,32,1.185,33,1.185,49,1.379,61,1.503,104,1.575,138,1.575,142,1.379,146,2.97,147,1.575,152,2.22,157,2.432,172,2.22,258,1.766,262,1.438,271,1.438,297,1.749,298,1.438,299,1.749,300,1.749,301,1.749,303,1.324,304,1.749,305,1.749,307,1.749,308,2.432,310,1.228,314,1.749,315,1.575,316,1.749,317,1.749,318,1.749,319,1.749,320,1.749,322,1.749,332,2.432,333,1.749,334,1.575,353,1.749,354,1.749,359,1.749,362,1.575,363,1.749,364,1.749,365,1.656,366,1.749,367,1.749,368,1.503,399,1.749,400,1.988,401,1.988,402,1.988,403,1.656,404,1.988,405,1.988,406,1.988,407,1.988]]],"fields":["title","text"],"invertedIndex":[["",{"_index":1,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"Export.html":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"Tools/New.html":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#background":{},"index.html#dependencies":{},"index.html#installation":{},"index.html#path":{},"index.html#when-or-why-would-i-use-this":{},"preview.html":{},"preview.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#hash-tags":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#integrating-with-vim":{},"tags/create.html#what-does-it-do":{},"tags/create.html#yaml-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#how-does-it-work":{},"tools/New.html":{},"tools/Summary.html":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["1",{"_index":271,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c",{"_index":354,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["13",{"_index":469,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["2",{"_index":282,"text":{"find.html":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["20",{"_index":324,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["3",{"_index":288,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["4",{"_index":302,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["5",{"_index":398,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["500",{"_index":317,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["8",{"_index":401,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["80",{"_index":319,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["absolut",{"_index":281,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["accept",{"_index":447,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["access",{"_index":84,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["achiev",{"_index":304,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["act",{"_index":78,"text":{"index.html":{},"index.html#background":{},"index.html#usage":{}},"title":{}}],["activ",{"_index":427,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["add",{"_index":210,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["afterward",{"_index":69,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["algebra",{"_index":296,"text":{"find.html":{},"find.html#when-would-this-be-used":{}},"title":{}}],["alia",{"_index":422,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["allow",{"_index":76,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["alt",{"_index":273,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["anoth",{"_index":432,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{}},"title":{}}],["ansi",{"_index":306,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["answer",{"_index":183,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["app",{"_index":270,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["appli",{"_index":552,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["appropri",{"_index":553,"text":{"tools/New.html":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["arbitrari",{"_index":419,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["arch",{"_index":154,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["around",{"_index":478,"text":{"tags/create.html":{}},"title":{}}],["assum",{"_index":59,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["aur",{"_index":37,"text":{"index.html":{},"index.html#dependencies":{},"index.html#installation":{}},"title":{}}],["avail",{"_index":36,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["avoid",{"_index":534,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["b",{"_index":399,"text":{"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["back",{"_index":494,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{"tools/BackLinks.html":{}}}],["background",{"_index":121,"text":{"index.html":{}},"title":{"index.html#background":{}}}],["backlink",{"_index":21,"text":{"index.html":{},"index.html#what-does-it-do":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{}},"title":{}}],["backlinks.sh",{"_index":549,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["base",{"_index":72,"text":{"index.html":{},"index.html#usage":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{}},"title":{}}],["bash",{"_index":49,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#installation":{},"index.html#path":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["bashrc",{"_index":215,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["basic",{"_index":464,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["bat",{"_index":146,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["be",{"_index":367,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["befor",{"_index":120,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{}},"title":{}}],["below",{"_index":276,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["beneath",{"_index":79,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["between",{"_index":144,"text":{"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["bin/cadmu",{"_index":247,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-does-it-work":{}},"title":{}}],["bin/printmarkdowntags/yaml",{"_index":525,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["bin/tags/filternotesbytmsutag.sh",{"_index":473,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["bin/tags/yaml",{"_index":514,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["bin/tools/list",{"_index":548,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["binari",{"_index":179,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["bind",{"_index":138,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"index.html#keyboard-bindings":{}}}],["bit",{"_index":476,"text":{"tags/create.html":{}},"title":{}}],["both",{"_index":362,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["brew",{"_index":155,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["bring",{"_index":493,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["broken",{"_index":575,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["bug",{"_index":364,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["bunch",{"_index":26,"text":{"index.html":{},"index.html#how-does-it-work":{}},"title":{}}],["busi",{"_index":571,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["c",{"_index":308,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["cadmu",{"_index":0,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#background":{},"index.html#cadmus":{},"index.html#how-does-it-work":{},"index.html#installation":{},"index.html#keyboard-bindings":{},"index.html#usage":{},"index.html#what-does-it-do":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"search.html":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/New.html":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{"index.html#cadmus":{}}}],["call",{"_index":387,"text":{"preview.html":{},"preview.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["campu",{"_index":385,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["can't",{"_index":543,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["captur",{"_index":455,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["cargo",{"_index":169,"text":{"index.html":{},"index.html#dependencies":{},"index.html#path":{}},"title":{}}],["case",{"_index":312,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["cat",{"_index":352,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["cd",{"_index":44,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#installation":{}},"title":{}}],["chang",{"_index":437,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["checkout",{"_index":513,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["choos",{"_index":252,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-does-it-work":{}},"title":{}}],["chosen",{"_index":444,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["chosentag",{"_index":470,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["cli",{"_index":205,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["clipboard",{"_index":175,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#what-does-it-do":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{}}],["code",{"_index":303,"text":{"find.html":{},"find.html#how-does-it-work":{},"preview.html":{},"preview.html#what-does-it-do":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#yaml-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["collect",{"_index":451,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["color",{"_index":322,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["color=alway",{"_index":314,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["come",{"_index":168,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["comm",{"_index":467,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["command",{"_index":7,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#keyboard-bindings":{},"index.html#usage":{},"index.html#what-does-it-do":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["complet",{"_index":524,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["comput",{"_index":295,"text":{"find.html":{},"find.html#when-would-this-be-used":{}},"title":{}}],["concurr",{"_index":435,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{}},"title":{}}],["concurrenttag",{"_index":468,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["config",{"_index":68,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["config/fish/config.fish",{"_index":222,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["content",{"_index":287,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["context",{"_index":323,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["continu",{"_index":557,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["convert",{"_index":223,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{"Convert.html":{}}}],["copi",{"_index":230,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["correct",{"_index":497,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["coupl",{"_index":129,"text":{"index.html":{},"index.html#background":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["cq",{"_index":325,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["creat",{"_index":77,"text":{"index.html":{},"index.html#usage":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{"tags/create.html":{}}}],["ctrl",{"_index":141,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"search.html#when-would-this-be-used":{}},"title":{}}],["current",{"_index":439,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["cut",{"_index":147,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["d",{"_index":46,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#installation":{}},"title":{}}],["data",{"_index":89,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["databas",{"_index":440,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["decorations=alway",{"_index":407,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["default",{"_index":269,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["demonstr",{"_index":123,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["depend",{"_index":60,"text":{"index.html":{},"index.html#installation":{},"index.html#path":{},"tags/create.html":{}},"title":{"index.html#dependencies":{},"tags/create.html#dependencies":{}}}],["describ",{"_index":275,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["descript",{"_index":140,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["desk",{"_index":291,"text":{"find.html":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["dev/nul",{"_index":313,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["dialog",{"_index":257,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#what-does-it-do":{},"search.html":{},"search.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["differ",{"_index":461,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["directori",{"_index":63,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#installation":{},"index.html#path":{},"index.html#usage":{},"preview.html":{},"preview.html#what-does-it-do":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#how-does-it-work":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["dirnam",{"_index":351,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["discord",{"_index":361,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["display",{"_index":34,"text":{"index.html":{},"index.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{"tools/BackLinks.html":{}}}],["distinct",{"_index":408,"text":{"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["do",{"_index":436,"text":{"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{}},"title":{}}],["document",{"_index":81,"text":{"index.html":{},"index.html#usage":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["doesn't",{"_index":256,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{}},"title":{}}],["dokuwiki",{"_index":240,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["don't",{"_index":430,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["down",{"_index":334,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["driven",{"_index":8,"text":{"index.html":{},"index.html#what-does-it-do":{}},"title":{}}],["e",{"_index":544,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["e.g",{"_index":457,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["e:execut",{"_index":341,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["easi",{"_index":499,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["echo",{"_index":211,"text":{"index.html":{},"index.html#path":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["edg",{"_index":479,"text":{"tags/create.html":{}},"title":{}}],["edit",{"_index":11,"text":{"index.html":{},"index.html#what-does-it-do":{}},"title":{}}],["editor",{"_index":413,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{}},"title":{}}],["engin",{"_index":409,"text":{"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["enter",{"_index":268,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["essenti",{"_index":29,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#yaml-tags":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["even",{"_index":116,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["evernot",{"_index":127,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["exampl",{"_index":243,"text":{"Convert.html":{},"Export.html":{},"Misc/windows.html":{},"find.html":{},"preview.html":{},"search.html":{},"tags/Filter.html":{},"tags/create.html":{},"tools/BackLinks.html":{},"tools/New.html":{},"tools/webtitle.html":{}},"title":{"Convert.html#example":{},"Export.html#example":{},"Misc/windows.html#example":{},"find.html#example":{},"preview.html#example":{},"search.html#example":{},"tags/Filter.html#example":{},"tags/create.html#example":{},"tools/BackLinks.html#example":{},"tools/New.html#example":{},"tools/webtitle.html#example":{}}}],["execut",{"_index":490,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["exist",{"_index":487,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["exit",{"_index":285,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["export",{"_index":212,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"Export.html#what-does-it-do":{},"index.html":{},"index.html#path":{}},"title":{"Export.html":{}}}],["expr",{"_index":523,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["ext:md",{"_index":400,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["extens",{"_index":194,"text":{"index.html":{},"index.html#recommended-for-all-features":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["extract",{"_index":480,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["f",{"_index":347,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["f:execut",{"_index":350,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["f:interactive,pgup:preview",{"_index":331,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["fashion",{"_index":40,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["fd",{"_index":148,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["featur",{"_index":170,"text":{"index.html":{},"index.html#dependencies":{}},"title":{"index.html#recommended-for-all-features":{}}}],["fell",{"_index":112,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["fg:#f8f8f2,bg",{"_index":353,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["figur",{"_index":301,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["file",{"_index":13,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#usage":{},"index.html#what-does-it-do":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#yaml-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["filenam",{"_index":530,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["filter",{"_index":18,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#what-does-it-do":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{"tags/Filter.html":{}}}],["filter/preview",{"_index":297,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["final",{"_index":559,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["find",{"_index":10,"text":{"find.html":{},"find.html#what-does-it-do":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#dependencies":{},"index.html#keyboard-bindings":{},"index.html#usage":{},"index.html#what-does-it-do":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{"find.html":{}}}],["fine",{"_index":42,"text":{"index.html":{},"index.html#installation":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["first",{"_index":509,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["fish",{"_index":217,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["fix",{"_index":573,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["follow",{"_index":443,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["footnot",{"_index":365,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{},"tools/webtitle.html#when-would-this-be-used":{}},"title":{}}],["forev",{"_index":300,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["forgot",{"_index":292,"text":{"find.html":{},"find.html#when-would-this-be-used":{}},"title":{}}],["fork",{"_index":108,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["format",{"_index":583,"text":{"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{}}],["found",{"_index":420,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["frankli",{"_index":92,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["free",{"_index":113,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["friend",{"_index":381,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["function",{"_index":74,"text":{"index.html":{},"index.html#background":{},"index.html#usage":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["further",{"_index":445,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["fuzzi",{"_index":261,"text":{"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"find.html":{},"find.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["fzf",{"_index":149,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["fzf.vim",{"_index":521,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["gener",{"_index":20,"text":{"index.html":{},"index.html#installation":{},"index.html#usage":{},"index.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["git",{"_index":41,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"index.html":{},"index.html#installation":{}},"title":{}}],["github",{"_index":378,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["global",{"_index":373,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["gnu",{"_index":150,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["good",{"_index":135,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"index.html#recommended-for-all-features":{},"preview.html":{},"preview.html#when-would-this-be-used":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["googl",{"_index":389,"text":{"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["grat",{"_index":253,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{}},"title":{}}],["great",{"_index":238,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{},"tools/webtitle.html":{},"tools/webtitle.html#when-would-this-be-used":{}},"title":{}}],["grep",{"_index":145,"text":{"index.html":{},"index.html#dependencies":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["guak",{"_index":200,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["haha",{"_index":463,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["handi",{"_index":540,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["hash",{"_index":498,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{"tags/create.html#hash-tags":{}}}],["head",{"_index":551,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["header",{"_index":483,"text":{"tags/create.html":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["heard",{"_index":189,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["help",{"_index":130,"text":{"index.html":{},"index.html#background":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["here",{"_index":442,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["hey",{"_index":118,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["highlight",{"_index":152,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["home",{"_index":56,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["home/.cargo/bin",{"_index":221,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["home/.local/bin",{"_index":219,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["home/bin",{"_index":220,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["home/notes/md",{"_index":531,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["home/notes/md/not",{"_index":526,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["home/ryan/.cadmus/bin/tags/listtags.r",{"_index":516,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["html",{"_index":348,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["https://raw.githubusercontent.com/ryangreenup/cadmus/master/install.sh",{"_index":48,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["i'v",{"_index":188,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["idea",{"_index":122,"text":{"index.html":{},"index.html#background":{},"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["ident",{"_index":561,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["ignor",{"_index":311,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["imagin",{"_index":289,"text":{"find.html":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["imap",{"_index":522,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["implement",{"_index":75,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["import",{"_index":576,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["includ",{"_index":166,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["index",{"_index":62,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"index.html":{},"index.html#installation":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["inform",{"_index":94,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["init",{"_index":441,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["inlin",{"_index":481,"text":{"tags/create.html":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["insid",{"_index":246,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-does-it-work":{},"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["instal",{"_index":35,"text":{"index.html":{},"index.html#dependencies":{},"index.html#installation":{},"index.html#path":{}},"title":{"index.html#installation":{}}}],["install.sh",{"_index":50,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["instant",{"_index":264,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["integr",{"_index":517,"text":{"tags/create.html":{}},"title":{"tags/create.html#integrating-with-vim":{}}}],["intend",{"_index":566,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["interact",{"_index":298,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#what-does-it-do":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["interest",{"_index":87,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["interfac",{"_index":9,"text":{"index.html":{},"index.html#what-does-it-do":{}},"title":{}}],["involv",{"_index":507,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["ip",{"_index":178,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["ipad",{"_index":380,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["iproute2",{"_index":177,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["isn't",{"_index":454,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["issu",{"_index":115,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["it'",{"_index":117,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["ital",{"_index":405,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["iterm2",{"_index":191,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["jq",{"_index":153,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["keep",{"_index":570,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["key",{"_index":277,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["keyboard",{"_index":137,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{"find.html#keyboard-shortcuts":{},"index.html#keyboard-bindings":{},"search.html#keyboard-shortcuts":{}}}],["kitti",{"_index":187,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["knowledg",{"_index":2,"text":{"index.html":{},"index.html#cadmus":{},"index.html#usage":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["l",{"_index":309,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["lan",{"_index":383,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["languag",{"_index":228,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#what-does-it-do":{}},"title":{}}],["latex",{"_index":233,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Export.html#what-does-it-do":{}},"title":{}}],["line",{"_index":315,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["line:style:nobold",{"_index":328,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["linear",{"_index":393,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["link",{"_index":23,"text":{"index.html":{},"index.html#what-does-it-do":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{},"tools/BackLinks.html#when-would-this-be-used":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{"tools/BackLinks.html":{}}}],["linux/mac",{"_index":356,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["list",{"_index":438,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["littl",{"_index":505,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["local/bin/cadmu",{"_index":57,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["look",{"_index":377,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"preview.html":{},"preview.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["loop",{"_index":508,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["m",{"_index":307,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["mac",{"_index":181,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["made",{"_index":560,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["make",{"_index":109,"text":{"index.html":{},"index.html#dependencies":{},"index.html#when-or-why-would-i-use-this":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{}}],["makserv",{"_index":375,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{}},"title":{}}],["manag",{"_index":3,"text":{"index.html":{},"index.html#cadmus":{}},"title":{}}],["mani",{"_index":460,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["markdown",{"_index":12,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#usage":{},"index.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["markdown](./links.md",{"_index":538,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{}},"title":{}}],["markserv",{"_index":369,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{},"preview.html#how-does-it-work":{},"preview.html#what-does-it-do":{}},"title":{}}],["marktext",{"_index":202,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["markup",{"_index":227,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#what-does-it-do":{}},"title":{}}],["match",{"_index":262,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["match:bg:30,200,30",{"_index":330,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["match:fg:21,39,200",{"_index":327,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["match:style:bold",{"_index":329,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["materi",{"_index":193,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["math",{"_index":88,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["mathematica",{"_index":293,"text":{"find.html":{},"find.html#when-would-this-be-used":{}},"title":{}}],["mathml",{"_index":349,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["md",{"_index":532,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["mdcat",{"_index":157,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["mdless",{"_index":203,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["menu",{"_index":485,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["misc",{"_index":411,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["miscellan",{"_index":412,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{}},"title":{}}],["mkdoc",{"_index":192,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["mktemp",{"_index":45,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["mod",{"_index":397,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["mode",{"_index":242,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{}},"title":{}}],["modular",{"_index":105,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["moment",{"_index":359,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["more",{"_index":506,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["much",{"_index":418,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["multipl",{"_index":85,"text":{"index.html":{},"index.html#usage":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["myself",{"_index":421,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["n",{"_index":488,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["name",{"_index":15,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["narrow",{"_index":446,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["neat",{"_index":537,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["necessari",{"_index":199,"text":{"index.html":{},"index.html#path":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["need",{"_index":391,"text":{"search.html":{},"search.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["new",{"_index":434,"text":{"Tools/New.html":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{"Tools/New.html":{},"Tools/New.html#new-note":{},"tools/New.html":{}}}],["next",{"_index":558,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["node",{"_index":158,"text":{"index.html":{},"index.html#dependencies":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["nodej",{"_index":512,"text":{"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#yaml-tags":{}},"title":{}}],["note",{"_index":24,"text":{"Convert.html":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Export.html#what-does-it-do":{},"Export.html#when-would-this-be-used":{},"Misc/Summary-Misc.html":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"Tools/New.html":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"find.html#what-does-it-do":{},"index.html":{},"index.html#installation":{},"index.html#usage":{},"index.html#what-does-it-do":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"preview.html#what-does-it-do":{},"preview.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"search.html#what-does-it-do":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#what-does-it-do":{},"tags/Filter.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#when-would-this-be-used":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#how-does-it-work":{},"tools/BackLinks.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#what-does-it-do":{},"tools/New.html#when-would-this-be-used":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"Tools/New.html":{},"Tools/New.html#new-note":{},"tools/New.html":{}}}],["note_dir",{"_index":503,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["notes/md/not",{"_index":545,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["number",{"_index":326,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["nvim",{"_index":196,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["o",{"_index":283,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["o:execut",{"_index":343,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["offer",{"_index":251,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["ol",{"_index":546,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["on",{"_index":237,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["onenot",{"_index":126,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["open",{"_index":96,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#when-or-why-would-i-use-this":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["oper",{"_index":38,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["option",{"_index":225,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{},"Export.html":{},"Export.html#what-does-it-do":{}},"title":{}}],["order",{"_index":492,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["ordinari",{"_index":386,"text":{"preview.html":{},"preview.html#how-does-it-work":{}},"title":{}}],["org",{"_index":241,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{}},"title":{}}],["org2md/md2mediawiki",{"_index":236,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{}},"title":{}}],["otherwis",{"_index":495,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["out",{"_index":104,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#when-or-why-would-i-use-this":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["over",{"_index":382,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["overload",{"_index":95,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["page",{"_index":332,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["pandoc",{"_index":159,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Export.html#how-does-it-work":{},"Export.html#what-does-it-do":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{}},"title":{}}],["parse.j",{"_index":515,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tags/create.html#yaml-tags":{}},"title":{}}],["particular",{"_index":452,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["pass",{"_index":484,"text":{"tags/create.html":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["past",{"_index":231,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["path",{"_index":208,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#path":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{}},"title":{"index.html#path":{}}}],["path=\"$home/.cargo/bin:$path",{"_index":214,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["path=\"$home/.local/bin:$path",{"_index":213,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["pcre2",{"_index":167,"text":{"index.html":{},"index.html#dependencies":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["pdf/html/doc",{"_index":248,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{}},"title":{}}],["perform",{"_index":53,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["perl",{"_index":160,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["permit",{"_index":568,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["pgdn",{"_index":279,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["pgup",{"_index":278,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["pgup:preview",{"_index":404,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["philosophi",{"_index":101,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["piec",{"_index":541,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["pip",{"_index":209,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["pipe",{"_index":31,"text":{"find.html":{},"find.html#how-does-it-work":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["place",{"_index":565,"text":{"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{}}],["play",{"_index":533,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["pleas",{"_index":111,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["pop",{"_index":249,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{}},"title":{}}],["popup",{"_index":429,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["portabl",{"_index":39,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["post",{"_index":114,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["power",{"_index":124,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["pr'",{"_index":110,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["pre",{"_index":486,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["prefer",{"_index":363,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["present",{"_index":263,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["press",{"_index":265,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["pretti",{"_index":321,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["prevent",{"_index":366,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["preview",{"_index":258,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"find.html#what-does-it-do":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"preview.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"search.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"preview.html":{}}}],["print",{"_index":370,"text":{"preview.html":{},"preview.html#what-does-it-do":{}},"title":{"tools/webtitle.html":{}}}],["probabl",{"_index":474,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["program",{"_index":458,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["progress",{"_index":475,"text":{"tags/create.html":{}},"title":{}}],["project",{"_index":82,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["provid",{"_index":6,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{},"Export.html":{},"Export.html#what-does-it-do":{},"index.html":{},"index.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#what-does-it-do":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["put",{"_index":519,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["python",{"_index":161,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["q",{"_index":142,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#when-would-this-be-used":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["qr",{"_index":371,"text":{"preview.html":{},"preview.html#what-does-it-do":{}},"title":{}}],["qrencod",{"_index":372,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{}},"title":{}}],["queri",{"_index":388,"text":{"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["quick",{"_index":229,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{}},"title":{}}],["quickli",{"_index":564,"text":{"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{}}],["quit",{"_index":91,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["r",{"_index":433,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["random",{"_index":579,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["rang",{"_index":316,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["ranger",{"_index":162,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["re",{"_index":489,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["read",{"_index":379,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["readabl",{"_index":204,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["realiti",{"_index":128,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["realli",{"_index":134,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["realpath",{"_index":151,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{}},"title":{}}],["reason",{"_index":431,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{}},"title":{}}],["recent",{"_index":234,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{}},"title":{}}],["recod",{"_index":163,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["recol",{"_index":61,"text":{"index.html":{},"index.html#background":{},"index.html#dependencies":{},"index.html#installation":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["recommend",{"_index":176,"text":{"index.html":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{},"index.html#recommended-for-all-features":{}}}],["recurr",{"_index":394,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["recurs",{"_index":396,"text":{"search.html":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["redid",{"_index":511,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["reimplement",{"_index":107,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["rel",{"_index":22,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#what-does-it-do":{},"search.html":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["relat",{"_index":395,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["relev",{"_index":472,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["reloc",{"_index":414,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["rememb",{"_index":462,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["remov",{"_index":51,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["renam",{"_index":580,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["repair",{"_index":574,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["replac",{"_index":125,"text":{"index.html":{},"index.html#background":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["requir",{"_index":232,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["reson",{"_index":102,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["respect",{"_index":357,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["rf",{"_index":55,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["rg",{"_index":164,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["right",{"_index":368,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["ripgrep",{"_index":32,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"index.html#dependencies":{},"index.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#hash-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["rm",{"_index":54,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["rofi",{"_index":424,"text":{"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"Misc/windows.html#when-would-this-be-used":{}},"title":{}}],["rough",{"_index":477,"text":{"tags/create.html":{}},"title":{}}],["run",{"_index":65,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#usage":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["s",{"_index":403,"text":{"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["s#)[a",{"_index":500,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["s#[a",{"_index":528,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["s/^/realpath",{"_index":402,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["s/^/tmsu",{"_index":504,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["save",{"_index":554,"text":{"tools/New.html":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["sci",{"_index":90,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["script",{"_index":28,"text":{"index.html":{},"index.html#background":{},"index.html#how-does-it-work":{},"index.html#when-or-why-would-i-use-this":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["scroll",{"_index":280,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["sd",{"_index":171,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["search",{"_index":16,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-does-it-work":{},"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#usage":{},"index.html#what-does-it-do":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#what-does-it-do":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{"search.html":{}}}],["sed",{"_index":172,"text":{"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["see",{"_index":547,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["selecor",{"_index":450,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["select",{"_index":338,"text":{"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"find.html":{},"find.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["selet",{"_index":556,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["set",{"_index":218,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"index.html":{},"index.html#path":{},"search.html":{},"search.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["share",{"_index":254,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{},"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["shell",{"_index":27,"text":{"index.html":{},"index.html#background":{},"index.html#how-does-it-work":{}},"title":{}}],["shortcut",{"_index":139,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{"find.html#keyboard-shortcuts":{},"search.html#keyboard-shortcuts":{}}}],["shortli",{"_index":73,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["show",{"_index":70,"text":{"index.html":{},"index.html#usage":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["side",{"_index":259,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#what-does-it-do":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#what-does-it-do":{}},"title":{}}],["silent(cat",{"_index":346,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["silent(cod",{"_index":340,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["silent(echo",{"_index":336,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["silent(emac",{"_index":342,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["silent(xdg",{"_index":344,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["similar",{"_index":376,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["simpl",{"_index":99,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["simpli",{"_index":245,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-does-it-work":{}},"title":{}}],["sit",{"_index":290,"text":{"find.html":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["sk",{"_index":305,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["skim",{"_index":33,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"index.html#dependencies":{},"index.html#how-does-it-work":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-does-it-work":{},"tools/New.html":{},"tools/New.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["slow",{"_index":510,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["slugifi",{"_index":563,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["solut",{"_index":294,"text":{"find.html":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["solv",{"_index":392,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["somebodi",{"_index":255,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{}},"title":{}}],["someth",{"_index":272,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#when-would-this-be-used":{}},"title":{}}],["somewher",{"_index":542,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["sort",{"_index":471,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["sourc",{"_index":97,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["space",{"_index":562,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["span",{"_index":459,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["stackexchang",{"_index":182,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["start",{"_index":224,"text":{"Convert.html":{},"Export.html":{},"Misc/Summary-Misc.html":{},"Misc/windows.html":{},"find.html":{},"find.html#what-does-it-do":{},"preview.html":{},"preview.html#what-does-it-do":{},"search.html":{},"search.html#what-does-it-do":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#what-does-it-do":{},"tools/BackLinks.html":{},"tools/New.html":{},"tools/webtitle.html":{}},"title":{}}],["still",{"_index":83,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["strictli",{"_index":198,"text":{"index.html":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["string",{"_index":267,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["structur",{"_index":456,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["stuff",{"_index":98,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{},"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/create.html":{}},"title":{}}],["subtract",{"_index":466,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["such",{"_index":14,"text":{"index.html":{},"index.html#usage":{},"index.html#what-does-it-do":{}},"title":{}}],["suffer",{"_index":93,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["suffici",{"_index":52,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["suggest",{"_index":184,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["summari",{"_index":410,"text":{"tools/Summary.html":{}},"title":{"Misc/Summary-Misc.html":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}}}],["sure",{"_index":165,"text":{"index.html":{},"index.html#dependencies":{},"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["switch",{"_index":143,"text":{"index.html":{},"index.html#keyboard-bindings":{}},"title":{}}],["symlink",{"_index":448,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["sync",{"_index":416,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["system",{"_index":536,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["t",{"_index":310,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["tab",{"_index":555,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["tag",{"_index":19,"text":{"index.html":{},"index.html#what-does-it-do":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#integrating-with-vim":{},"tags/create.html#what-does-it-do":{},"tags/create.html#when-would-this-be-used":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#how-does-it-work":{},"tools/New.html#what-does-it-do":{},"tools/New.html#when-would-this-be-used":{}},"title":{"tags/create.html#hash-tags":{},"tags/create.html#yaml-tags":{}}}],["take",{"_index":106,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{}},"title":{}}],["tecton",{"_index":185,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["term",{"_index":17,"text":{"index.html":{},"index.html#what-does-it-do":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["termin",{"_index":5,"text":{"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"index.html#cadmus":{},"index.html#usage":{},"preview.html":{},"preview.html#what-does-it-do":{},"search.html":{},"search.html#how-does-it-work":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["texliv",{"_index":186,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["text=alway",{"_index":406,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["theme",{"_index":195,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["theme=twodark",{"_index":320,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["thing",{"_index":190,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{},"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["think",{"_index":384,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["though",{"_index":572,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["through",{"_index":67,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#usage":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["tie",{"_index":132,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["time",{"_index":390,"text":{"search.html":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["titl",{"_index":550,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{"tools/webtitle.html":{}}}],["tmp",{"_index":449,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["tmsu",{"_index":136,"text":{"index.html":{},"index.html#background":{},"index.html#dependencies":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#what-does-it-do":{},"tags/create.html#when-would-this-be-used":{},"tools/New.html":{},"tools/New.html#how-does-it-work":{}},"title":{}}],["todo",{"_index":244,"text":{"Convert.html":{},"Convert.html#example":{},"Export.html":{},"Export.html#example":{},"Misc/windows.html":{},"find.html":{},"find.html#how-does-it-work":{},"preview.html":{},"preview.html#example":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{"Misc/windows.html#todo":{}}}],["togeth",{"_index":133,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["toggl",{"_index":266,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["took",{"_index":299,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["tool",{"_index":4,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"index.html":{},"index.html#background":{},"index.html#cadmus":{},"index.html#when-or-why-would-i-use-this":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/New.html":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["topic",{"_index":453,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["transform",{"_index":226,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{}}],["tri",{"_index":103,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["type",{"_index":260,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["u",{"_index":527,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["ubuntu",{"_index":156,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["univers",{"_index":569,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["unix",{"_index":100,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["until",{"_index":465,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["up",{"_index":250,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["up,pgdn:preview",{"_index":333,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["url",{"_index":577,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{}}],["us",{"_index":30,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Convert.html#when-would-this-be-used":{},"Export.html":{},"Export.html#how-does-it-work":{},"Export.html#what-does-it-do":{},"Misc/Summary-Misc.html":{},"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"Misc/windows.html#when-would-this-be-used":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"index.html#how-does-it-work":{},"index.html#installation":{},"index.html#usage":{},"preview.html":{},"preview.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{},"tags/create.html#when-would-this-be-used":{},"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"Convert.html#how-do-i-use-it":{},"Convert.html#when-would-this-be-used":{},"Export.html#how-do-i-use-it":{},"Export.html#when-would-this-be-used":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/Summary-Misc.html#when-would-this-be-used":{},"Misc/windows.html#how-do-i-use-it":{},"Misc/windows.html#when-would-this-be-used":{},"find.html#how-do-i-use-it":{},"find.html#when-would-this-be-used":{},"index.html#how-do-i-use-it":{},"index.html#when-or-why-would-i-use-this":{},"preview.html#how-do-i-use-it":{},"preview.html#when-would-this-be-used":{},"search.html#how-do-i-use-it":{},"search.html#when-would-this-be-used":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#when-would-this-be-used":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#when-would-this-be-used":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#when-would-this-be-used":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#when-would-this-be-used":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#when-would-this-be-used":{}}}],["usag",{"_index":64,"text":{"index.html":{}},"title":{"index.html#usage":{}}}],["user",{"_index":131,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["usual",{"_index":491,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["v:execut",{"_index":339,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["variou",{"_index":71,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["version",{"_index":235,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{}},"title":{}}],["view",{"_index":374,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{}},"title":{}}],["vim",{"_index":518,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{"tags/create.html#integrating-with-vim":{}}}],["vimrc",{"_index":520,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["virtual",{"_index":535,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["vnote",{"_index":206,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["vscode",{"_index":207,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["w",{"_index":274,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["w:execut",{"_index":335,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["wa",{"_index":426,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["wa/wr",{"_index":423,"text":{"Misc/windows.html":{}},"title":{}}],["walk",{"_index":66,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["want",{"_index":80,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{},"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#usage":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{}}],["warn",{"_index":58,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"index.html":{},"index.html#installation":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/create.html":{}},"title":{}}],["weasyprint",{"_index":197,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["web",{"_index":581,"text":{},"title":{"tools/webtitle.html":{}}}],["websit",{"_index":578,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["webtitl",{"_index":582,"text":{"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["well",{"_index":43,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"index.html":{},"index.html#installation":{},"index.html#when-or-why-would-i-use-this":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["wget",{"_index":47,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["whatev",{"_index":417,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["width",{"_index":318,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["wiki",{"_index":539,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{}},"title":{}}],["wikipedia",{"_index":239,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{}},"title":{}}],["window",{"_index":415,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"Misc/windows.html#how-does-it-work":{},"Misc/windows.html#what-does-it-do":{},"Misc/windows.html#when-would-this-be-used":{}},"title":{"Misc/windows.html":{}}}],["without",{"_index":284,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["wl",{"_index":174,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["wmctrl",{"_index":425,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"Misc/windows.html#how-does-it-work":{}},"title":{}}],["won't",{"_index":496,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["work",{"_index":25,"text":{"Convert.html":{},"Export.html":{},"Misc/windows.html":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#recommended-for-all-features":{},"index.html#usage":{},"preview.html":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tools/BackLinks.html":{},"tools/New.html":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"Convert.html#how-does-it-work":{},"Export.html#how-does-it-work":{},"Misc/windows.html#how-does-it-work":{},"find.html#how-does-it-work":{},"index.html#how-does-it-work":{},"preview.html#how-does-it-work":{},"search.html#how-does-it-work":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html#how-does-it-work":{},"tools/BackLinks.html#how-does-it-work":{},"tools/New.html#how-does-it-work":{},"tools/webtitle.html#how-does-it-work":{}}}],["wr",{"_index":428,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["write",{"_index":567,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["wrote",{"_index":86,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["x",{"_index":119,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["xarg",{"_index":337,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["xclip",{"_index":173,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{}},"title":{}}],["xdg",{"_index":355,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["xorg",{"_index":358,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["y",{"_index":286,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["y:execut",{"_index":345,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["yakuak",{"_index":201,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["yaml",{"_index":482,"text":{"tags/create.html":{},"tags/create.html#what-does-it-do":{}},"title":{"tags/create.html#yaml-tags":{}}}],["you'r",{"_index":180,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"find.html":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#recommended-for-all-features":{},"search.html":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{},"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["z",{"_index":529,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["z]+(?=\\",{"_index":502,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["za",{"_index":501,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["zsh",{"_index":216,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["zulip",{"_index":360,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}]],"pipeline":["stemmer"],"version":"2.3.8"}} \ No newline at end of file +{"config":{"lang":["en"],"min_search_length":3,"prebuild_index":true,"separator":"[\\s\\-]+"},"docs":[{"location":"index.html","text":"Cadmus! \u00b6 Cadmus is a knowledge management tool in your terminal. What is Cadmus? \u00b6 Cadmus provides command driven interface to find and edit Markdown files, such as finding by name, searching for terms, filtering by tags, generating backlinks and generating relative links to other notes. How does it Work \u00b6 Cadmus is just a bunch of shell scripts that essentially use pipes and ripgrep with skim to display them. How Do i Use It \u00b6 Installation \u00b6 cadmus is available on the AUR , generally however cadmus will operate in a portable fashion from =~/.cadmus/=, so just using git is fine as well: cd $( mktemp -d ) wget https://raw.githubusercontent.com/RyanGreenup/cadmus/master/install.sh bash install.sh Note To remove it it is sufficient to perform: rm -rf \" $HOME /.cadmus\" rm ~/.local/bin/cadmus Warning This assumes that the dependencies have all been installed and recoll is indexing the directory of your notes. Usage \u00b6 Just run cadmus at the terminal and it will walk you through generating a config file. Afterwards running cadmus will show various commands such as find and search that can be used to work with your knowledge base. Note Shortly functionality will be implemented to allow creating a .cadmus file in any directory that will act as a config for all markdown files beneath that directory, this is useful if you want to use cadmus with documentation for a project and still have access to your notes, or have multiple knowledge bases. When or Why Would I Use This \u00b6 Well I wrote this because my interests are Math and Data Sci and quite frankly I suffer from information overload, I like open-source stuff, simple scripts and unix philosophy so if any of that resonates with you try it out. This is all modular so take what you like and reimplement it, fork it, make PR's and please fell free to post issues even if it's just to say Hey, I like tool x have you tried it before? . Background \u00b6 The idea of cadmus is to demonstrate how powerful the terminal can be and how it can act as a functional replacement for tools like OneNote or Evernote. In reality Cadmus is just a couple of shell scripts to help users tie together other really good tools like Skim , ripgrep , recoll and TMSU . keyboard bindings \u00b6 Command Shortcut Description cadmus find Ctrl - Q switch between find and grep in skim Dependencies \u00b6 bat cut fd find fzf GNU realpath grep highlight jq Arch | brew | ubuntu mdcat AUR node Pandoc perl python ranger recode Recoll rg Make sure to include pcre2 , this comes in Arch , if using cargo : cargo install ripgrep --features 'pcre2' sd sed skim tmsu AUR xclip or wl-clipboard Recommended for all Features \u00b6 iproute2 (for the ip binary) if you're on mac this stackExchange answer suggests iproute2 may work tectonic texlive Kitty I've also heard good things about iterm2 MkDocs MkDocs Material Extensions MkDocs Material Theme nvim tectonic WeasyPrint Interesting / Helpful / Recommended Generally (Not strictly necessary) \u00b6 guake or yakuake MarkText mdless readability-cli VNote VSCode PATH \u00b6 If any dependencies are installed with pip or cargo it will be necessary to add these directories to your PATH : ## bash echo ' export PATH=\"$HOME/.local/bin:$PATH\" export PATH=\"$HOME/.cargo/bin:$PATH\" ' >> ~/.bashrc ## zsh echo ' export PATH=\"$HOME/.local/bin:$PATH\" export PATH=\"$HOME/.cargo/bin:$PATH\" ' >> ~/.bashrc ## fish echo ' set PATH $HOME/.local/bin $PATH set PATH $HOME/bin $PATH set PATH \"$HOME/.cargo/bin $PATH ' >> ~/.config/fish/config.fish","title":"What does it do"},{"location":"index.html#cadmus","text":"Cadmus is a knowledge management tool in your terminal.","title":"Cadmus!"},{"location":"index.html#what-is-cadmus","text":"Cadmus provides command driven interface to find and edit Markdown files, such as finding by name, searching for terms, filtering by tags, generating backlinks and generating relative links to other notes.","title":"What is Cadmus?"},{"location":"index.html#how-does-it-work","text":"Cadmus is just a bunch of shell scripts that essentially use pipes and ripgrep with skim to display them.","title":"How does it Work"},{"location":"index.html#how-do-i-use-it","text":"","title":"How Do i Use It"},{"location":"index.html#installation","text":"cadmus is available on the AUR , generally however cadmus will operate in a portable fashion from =~/.cadmus/=, so just using git is fine as well: cd $( mktemp -d ) wget https://raw.githubusercontent.com/RyanGreenup/cadmus/master/install.sh bash install.sh Note To remove it it is sufficient to perform: rm -rf \" $HOME /.cadmus\" rm ~/.local/bin/cadmus Warning This assumes that the dependencies have all been installed and recoll is indexing the directory of your notes.","title":"Installation"},{"location":"index.html#usage","text":"Just run cadmus at the terminal and it will walk you through generating a config file. Afterwards running cadmus will show various commands such as find and search that can be used to work with your knowledge base. Note Shortly functionality will be implemented to allow creating a .cadmus file in any directory that will act as a config for all markdown files beneath that directory, this is useful if you want to use cadmus with documentation for a project and still have access to your notes, or have multiple knowledge bases.","title":"Usage"},{"location":"index.html#when-or-why-would-i-use-this","text":"Well I wrote this because my interests are Math and Data Sci and quite frankly I suffer from information overload, I like open-source stuff, simple scripts and unix philosophy so if any of that resonates with you try it out. This is all modular so take what you like and reimplement it, fork it, make PR's and please fell free to post issues even if it's just to say Hey, I like tool x have you tried it before? .","title":"When or Why Would I Use This"},{"location":"index.html#background","text":"The idea of cadmus is to demonstrate how powerful the terminal can be and how it can act as a functional replacement for tools like OneNote or Evernote. In reality Cadmus is just a couple of shell scripts to help users tie together other really good tools like Skim , ripgrep , recoll and TMSU .","title":"Background"},{"location":"index.html#keyboard-bindings","text":"Command Shortcut Description cadmus find Ctrl - Q switch between find and grep in skim","title":"keyboard bindings"},{"location":"index.html#dependencies","text":"bat cut fd find fzf GNU realpath grep highlight jq Arch | brew | ubuntu mdcat AUR node Pandoc perl python ranger recode Recoll rg Make sure to include pcre2 , this comes in Arch , if using cargo : cargo install ripgrep --features 'pcre2' sd sed skim tmsu AUR xclip or wl-clipboard","title":"Dependencies"},{"location":"index.html#recommended-for-all-features","text":"iproute2 (for the ip binary) if you're on mac this stackExchange answer suggests iproute2 may work tectonic texlive Kitty I've also heard good things about iterm2 MkDocs MkDocs Material Extensions MkDocs Material Theme nvim tectonic WeasyPrint","title":"Recommended for all Features"},{"location":"index.html#interesting-helpful-recommended-generally-not-strictly-necessary","text":"guake or yakuake MarkText mdless readability-cli VNote VSCode","title":"Interesting / Helpful / Recommended Generally (Not strictly necessary)"},{"location":"index.html#path","text":"If any dependencies are installed with pip or cargo it will be necessary to add these directories to your PATH : ## bash echo ' export PATH=\"$HOME/.local/bin:$PATH\" export PATH=\"$HOME/.cargo/bin:$PATH\" ' >> ~/.bashrc ## zsh echo ' export PATH=\"$HOME/.local/bin:$PATH\" export PATH=\"$HOME/.cargo/bin:$PATH\" ' >> ~/.bashrc ## fish echo ' set PATH $HOME/.local/bin $PATH set PATH $HOME/bin $PATH set PATH \"$HOME/.cargo/bin $PATH ' >> ~/.config/fish/config.fish","title":"PATH"},{"location":"Convert.html","text":"Note Start this with cadmus convert What does it do \u00b6 This provides options for transforming the clipboard into other markup languages for quick copy paste. How Do I use it \u00b6 Warning This requires LaTeX or Tectonic, as well as a recent version of pandoc. Just run cadmus convert org2md/md2mediawiki/... and the clipboard will be transformed from one markup language into the other. When Would This Be Used \u00b6 This is great for taking stuff of Wikipedia or for using Dokuwiki or org-mode . Example \u00b6 #TODO How does it Work \u00b6 This simply uses pandoc, just search for pandoc inside bin/cadmus","title":"Convert"},{"location":"Convert.html#what-does-it-do","text":"This provides options for transforming the clipboard into other markup languages for quick copy paste.","title":"What does it do"},{"location":"Convert.html#how-do-i-use-it","text":"Warning This requires LaTeX or Tectonic, as well as a recent version of pandoc. Just run cadmus convert org2md/md2mediawiki/... and the clipboard will be transformed from one markup language into the other.","title":"How Do I use it"},{"location":"Convert.html#when-would-this-be-used","text":"This is great for taking stuff of Wikipedia or for using Dokuwiki or org-mode .","title":"When Would This Be Used"},{"location":"Convert.html#example","text":"#TODO","title":"Example"},{"location":"Convert.html#how-does-it-work","text":"This simply uses pandoc, just search for pandoc inside bin/cadmus","title":"How does it Work"},{"location":"Export.html","text":"Note Start this with cadmus export What does it do \u00b6 This provides options for exporting notes using \\LaTeX \\LaTeX and pandoc How Do I use it \u00b6 Warning This requires LaTeX or Tectonic, as well as a recent version of pandoc. Just run cadmus export pdf/html/docs and skim will pop up and offer notes to choose from. When Would This Be Used \u00b6 Grat for sharing notes with somebody who doesn't want Markdown. Example \u00b6 #TODO How does it Work \u00b6 This simply uses pandoc, just search for pandoc inside bin/cadmus","title":"Export"},{"location":"Export.html#what-does-it-do","text":"This provides options for exporting notes using \\LaTeX \\LaTeX and pandoc","title":"What does it do"},{"location":"Export.html#how-do-i-use-it","text":"Warning This requires LaTeX or Tectonic, as well as a recent version of pandoc. Just run cadmus export pdf/html/docs and skim will pop up and offer notes to choose from.","title":"How Do I use it"},{"location":"Export.html#when-would-this-be-used","text":"Grat for sharing notes with somebody who doesn't want Markdown.","title":"When Would This Be Used"},{"location":"Export.html#example","text":"#TODO","title":"Example"},{"location":"Export.html#how-does-it-work","text":"This simply uses pandoc, just search for pandoc inside bin/cadmus","title":"How does it Work"},{"location":"find.html","text":"Note Start this with cadmus find What does it do \u00b6 This starts a find dialog with a preview of the note on the side. How Do I use it \u00b6 After running the command type in the name or directory of a note and the fuzzy matches will be presented with an instant preview to the side. Press Ctrl + Q to toggle searching inside the note for a string, any matches will be highlighted. Pressing Enter on a note will open it in the default app, 1 if you want to do something else with it copy the path to the clipboard with Alt + w as described below in Keyboard Shortcuts . Keyboard Shortcuts \u00b6 Keys Description PgUp / PgDn Scroll Preview Ctrl - w Copy Absolute path to note 2 Alt - w Copy Relative path to note Ctrl - o Open the note in the default app without exiting Alt - y Copy File Contents to Clipboard 3 When Would This Be Used \u00b6 Imagine you're sitting at your desk and you forgot how to pipe with Mathematica , you're solution is cadmus find and then type something like computer algebra then Ctrl - Q -> . Example \u00b6 How does it Work \u00b6 So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 4 This is the code that achieves it: sk --ansi -m -c 'rg -l -t markdown --ignore-case \"{}\"' \\ --preview \"bat {} 2> /dev/null \\ --color=always --line-range :500 \\ --terminal-width 80 \\ --theme=TwoDark |\\ rg --pretty --colors --context 20 {cq} \\ --no-line-number --ignore-case \\ --colors 'match:fg:21,39,200' \\ --colors 'line:style:nobold' \\ --colors 'match:style:bold' \\ --colors 'match:bg:30,200,30'\" \\ --bind 'ctrl-f:interactive,pgup:preview-page-up,pgdn:preview-page-down' \\ --bind 'ctrl-w:execute-silent(echo {} |\\ xargs realpath |\\ xclip -selection clipboard)' \\ --bind 'alt-w:execute-silent(echo {} | xclip -selection clipboard)' \\ --bind 'alt-v:execute-silent(code -a {}),alt-e:execute-silent(emacs {})' \\ --bind 'ctrl-o:execute-silent(xdg-open {})' \\ --bind 'alt-y:execute-silent(cat {} | xclip -selection clipboard)' \\ --bind 'alt-o:execute-silent(cat {} |\\ pandoc -f markdown -t html --mathml |\\ xclip -selection clipboard)' \\ --bind 'alt-f:execute-silent(echo {} |\\ xargs dirname |\\ xargs cd; cat {} |\\ pandoc -f markdown -t dokuwiki --mathml |\\ xclip -selection clipboard)' \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c xdg-open / open on Linux/Mac respectively \u21a9 TODO: this only works on Xorg at the moment \u21a9 This is really good for Zulip / Discord \u21a9 This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"Find"},{"location":"find.html#what-does-it-do","text":"This starts a find dialog with a preview of the note on the side.","title":"What does it do"},{"location":"find.html#how-do-i-use-it","text":"After running the command type in the name or directory of a note and the fuzzy matches will be presented with an instant preview to the side. Press Ctrl + Q to toggle searching inside the note for a string, any matches will be highlighted. Pressing Enter on a note will open it in the default app, 1 if you want to do something else with it copy the path to the clipboard with Alt + w as described below in Keyboard Shortcuts .","title":"How Do I use it"},{"location":"find.html#keyboard-shortcuts","text":"Keys Description PgUp / PgDn Scroll Preview Ctrl - w Copy Absolute path to note 2 Alt - w Copy Relative path to note Ctrl - o Open the note in the default app without exiting Alt - y Copy File Contents to Clipboard 3","title":"Keyboard Shortcuts"},{"location":"find.html#when-would-this-be-used","text":"Imagine you're sitting at your desk and you forgot how to pipe with Mathematica , you're solution is cadmus find and then type something like computer algebra then Ctrl - Q -> .","title":"When Would This Be Used"},{"location":"find.html#example","text":"","title":"Example"},{"location":"find.html#how-does-it-work","text":"So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 4 This is the code that achieves it: sk --ansi -m -c 'rg -l -t markdown --ignore-case \"{}\"' \\ --preview \"bat {} 2> /dev/null \\ --color=always --line-range :500 \\ --terminal-width 80 \\ --theme=TwoDark |\\ rg --pretty --colors --context 20 {cq} \\ --no-line-number --ignore-case \\ --colors 'match:fg:21,39,200' \\ --colors 'line:style:nobold' \\ --colors 'match:style:bold' \\ --colors 'match:bg:30,200,30'\" \\ --bind 'ctrl-f:interactive,pgup:preview-page-up,pgdn:preview-page-down' \\ --bind 'ctrl-w:execute-silent(echo {} |\\ xargs realpath |\\ xclip -selection clipboard)' \\ --bind 'alt-w:execute-silent(echo {} | xclip -selection clipboard)' \\ --bind 'alt-v:execute-silent(code -a {}),alt-e:execute-silent(emacs {})' \\ --bind 'ctrl-o:execute-silent(xdg-open {})' \\ --bind 'alt-y:execute-silent(cat {} | xclip -selection clipboard)' \\ --bind 'alt-o:execute-silent(cat {} |\\ pandoc -f markdown -t html --mathml |\\ xclip -selection clipboard)' \\ --bind 'alt-f:execute-silent(echo {} |\\ xargs dirname |\\ xargs cd; cat {} |\\ pandoc -f markdown -t dokuwiki --mathml |\\ xclip -selection clipboard)' \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c xdg-open / open on Linux/Mac respectively \u21a9 TODO: this only works on Xorg at the moment \u21a9 This is really good for Zulip / Discord \u21a9 This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"How does it Work"},{"location":"preview.html","text":"Note Start this with cadmus preview What does it do \u00b6 This starts markserv in the notes directory and prints a qr code to the terminal. How Do I use it \u00b6 Warning This requires markserv and qrencode. Just run cadmus preview or cadmus preview! for global, to view your notes with makserv. When Would This Be Used \u00b6 This is good for previewing your notes similar to what they might look like on GitHub , the global preview! can be good to read notes on an iPad or share with friends over the LAN (think on campus). Example \u00b6 #TODO How does it Work \u00b6 This just uses ordinary calls to MarkServ","title":"Preview"},{"location":"preview.html#what-does-it-do","text":"This starts markserv in the notes directory and prints a qr code to the terminal.","title":"What does it do"},{"location":"preview.html#how-do-i-use-it","text":"Warning This requires markserv and qrencode. Just run cadmus preview or cadmus preview! for global, to view your notes with makserv.","title":"How Do I use it"},{"location":"preview.html#when-would-this-be-used","text":"This is good for previewing your notes similar to what they might look like on GitHub , the global preview! can be good to read notes on an iPad or share with friends over the LAN (think on campus).","title":"When Would This Be Used"},{"location":"preview.html#example","text":"#TODO","title":"Example"},{"location":"preview.html#how-does-it-work","text":"This just uses ordinary calls to MarkServ","title":"How does it Work"},{"location":"search.html","text":"Note Start this with cadmus search What does it do \u00b6 This starts a search dialog with a preview of the note on the side. How Do I use it \u00b6 Warning This requires recoll set up to index your notes directory. After running the command type in a query just like you would with Google , matches will be presented with an instant preview to the side. Press Ctrl + Q to toggle search inside the note for a string (there will not be highlighting) 1 Pressing Enter on a note will open it in the default app, 2 if you want to do something else with it copy the path to the clipboard with Alt + w as described below in Keyboard Shortcuts . Keyboard Shortcuts \u00b6 Keys Description PgUp / PgDn Scroll Preview Ctrl - w Copy Absolute path to note 3 Alt - w Copy Relative path to note Ctrl - o Open the note in the default app without exiting Alt - y Copy File Contents to Clipboard 4 When Would This Be Used \u00b6 Imagine you're sitting at your desk and this time you need to, solve a linear recurrence relation, you're solution is cadmus search and then type something like linear recursion then Ctrl - Q math mod . Example \u00b6 How does it Work \u00b6 So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 5 This is the code that achieves it: sk -m -i -c 'recoll -b -t -q \"ext:md\" {} |\\ cut -c 8- | sed s/^/realpath\\ \\\"/ |\\ sed s+\\$+\\\"\\ --relative-to\\ \\\"./\\\"+ | bash' \\ --bind pgup:preview-page-up,pgdn:preview-page-down \\ --preview \"bat --color=always --line-range :500 \\ --terminal-width 80 --theme=TwoDark {+} \\ --italic-text=always \\ --decorations=always\" \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c The distinction between this and find is essentially the distinction between grep and a search engine. \u21a9 xdg-open / open on Linux/Mac respectively \u21a9 TODO: this only works on Xorg at the moment \u21a9 This is really good for Zulip / Discord \u21a9 This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"Search"},{"location":"search.html#what-does-it-do","text":"This starts a search dialog with a preview of the note on the side.","title":"What does it do"},{"location":"search.html#how-do-i-use-it","text":"Warning This requires recoll set up to index your notes directory. After running the command type in a query just like you would with Google , matches will be presented with an instant preview to the side. Press Ctrl + Q to toggle search inside the note for a string (there will not be highlighting) 1 Pressing Enter on a note will open it in the default app, 2 if you want to do something else with it copy the path to the clipboard with Alt + w as described below in Keyboard Shortcuts .","title":"How Do I use it"},{"location":"search.html#keyboard-shortcuts","text":"Keys Description PgUp / PgDn Scroll Preview Ctrl - w Copy Absolute path to note 3 Alt - w Copy Relative path to note Ctrl - o Open the note in the default app without exiting Alt - y Copy File Contents to Clipboard 4","title":"Keyboard Shortcuts"},{"location":"search.html#when-would-this-be-used","text":"Imagine you're sitting at your desk and this time you need to, solve a linear recurrence relation, you're solution is cadmus search and then type something like linear recursion then Ctrl - Q math mod .","title":"When Would This Be Used"},{"location":"search.html#example","text":"","title":"Example"},{"location":"search.html#how-does-it-work","text":"So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 5 This is the code that achieves it: sk -m -i -c 'recoll -b -t -q \"ext:md\" {} |\\ cut -c 8- | sed s/^/realpath\\ \\\"/ |\\ sed s+\\$+\\\"\\ --relative-to\\ \\\"./\\\"+ | bash' \\ --bind pgup:preview-page-up,pgdn:preview-page-down \\ --preview \"bat --color=always --line-range :500 \\ --terminal-width 80 --theme=TwoDark {+} \\ --italic-text=always \\ --decorations=always\" \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c The distinction between this and find is essentially the distinction between grep and a search engine. \u21a9 xdg-open / open on Linux/Mac respectively \u21a9 TODO: this only works on Xorg at the moment \u21a9 This is really good for Zulip / Discord \u21a9 This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"How does it Work"},{"location":"Misc/Summary-Misc.html","text":"Note Start this with cadmus misc What does it do \u00b6 These are just miscellaneous tools that either open editors, relocate windows or sync with git. How Do I use it \u00b6 Run cadmus misc ... for whatever command. When Would This Be Used \u00b6 Much of this stuff is arbitrary things I found myself wanting to alias.","title":"Summary"},{"location":"Misc/Summary-Misc.html#what-does-it-do","text":"These are just miscellaneous tools that either open editors, relocate windows or sync with git.","title":"What does it do"},{"location":"Misc/Summary-Misc.html#how-do-i-use-it","text":"Run cadmus misc ... for whatever command.","title":"How Do I use it"},{"location":"Misc/Summary-Misc.html#when-would-this-be-used","text":"Much of this stuff is arbitrary things I found myself wanting to alias.","title":"When Would This Be Used"},{"location":"Misc/windows.html","text":"Note Start this with cadmus misc wa/wr What does it do \u00b6 This offers a fuzzy selection of windows just like rofi but in the terminal. How Do I use it \u00b6 Warning This requires wmctrl set up to index your notes directory. Run cadmus misc wa to activate a window or cadmus misc wr to relocate a window, a dialog will popup. Type to filter the popup and press Enter to activate that window. When Would This Be Used \u00b6 This is good for when you're looking for a window but you don't want to use rofi for one reason or another. Example \u00b6 TODO \u00b6 How does it Work \u00b6 This just uses wmctrl and fzf to filter through the windows like this: bash wmctrl -R \"$(wmctrl -l | cut -f 5- -d \" \" | fzf)\"","title":"Windows"},{"location":"Misc/windows.html#what-does-it-do","text":"This offers a fuzzy selection of windows just like rofi but in the terminal.","title":"What does it do"},{"location":"Misc/windows.html#how-do-i-use-it","text":"Warning This requires wmctrl set up to index your notes directory. Run cadmus misc wa to activate a window or cadmus misc wr to relocate a window, a dialog will popup. Type to filter the popup and press Enter to activate that window.","title":"How Do I use it"},{"location":"Misc/windows.html#when-would-this-be-used","text":"This is good for when you're looking for a window but you don't want to use rofi for one reason or another.","title":"When Would This Be Used"},{"location":"Misc/windows.html#example","text":"","title":"Example"},{"location":"Misc/windows.html#todo","text":"","title":"TODO"},{"location":"Misc/windows.html#how-does-it-work","text":"This just uses wmctrl and fzf to filter through the windows like this: bash wmctrl -R \"$(wmctrl -l | cut -f 5- -d \" \" | fzf)\"","title":"How does it Work"},{"location":"Tools/New.html","text":"New Note \u00b6","title":"New Note"},{"location":"Tools/New.html#new-note","text":"","title":"New Note"},{"location":"tags/Filter.html","text":"Note Start this with cadmus tags filter What does it do \u00b6 This concurrently filters your notes based on the tags that are in TMSU , it will be necessary to create tags in TMSU before doing this if the tags have changed. How Do I use it \u00b6 After running the command a list of tags that are currently in the tmsu database will be presented, press Enter to select an inital tag. From here the following will be displayed: Chosen Tags Matching Notes Concurrent Tags Further tags can be chosen to narrow down the search by pressing t or the currently selected tags can be accepted with Any key. After accepting the chosen tags with any key, all the files can be symlinked into /tmp , opened in VScode 1 or the find selecor can be started on the matches. When Would This Be Used \u00b6 This is great for when you're trying to collect all the knowledge you have on a particular topic when it isn't captured by your directory structure. (e.g. all notes on #programming may span many different directories) Example \u00b6 How does it Work \u00b6 I don't remember haha. Basically there is a bash function that finds tags in /TMSU/ and it's recursively called with t until any key is pressed. The chosen tags are subtracted from the concurrent tags by using comm : ConcurrentTags = \" $( comm -13 < ( echo \" $ChosenTags \" | sort ) <(echo \" $ConcurrentTags \" | sort))\" The relevant script is in bin/tags/FilterNotesByTMSUTag.sh This will probably change to the default app when I get time to look at it, just change it to whatever app you like in /bin/tags/FilterNotesByTMSUTag.sh \u21a9","title":"Filter"},{"location":"tags/Filter.html#what-does-it-do","text":"This concurrently filters your notes based on the tags that are in TMSU , it will be necessary to create tags in TMSU before doing this if the tags have changed.","title":"What does it do"},{"location":"tags/Filter.html#how-do-i-use-it","text":"After running the command a list of tags that are currently in the tmsu database will be presented, press Enter to select an inital tag. From here the following will be displayed: Chosen Tags Matching Notes Concurrent Tags Further tags can be chosen to narrow down the search by pressing t or the currently selected tags can be accepted with Any key. After accepting the chosen tags with any key, all the files can be symlinked into /tmp , opened in VScode 1 or the find selecor can be started on the matches.","title":"How Do I use it"},{"location":"tags/Filter.html#when-would-this-be-used","text":"This is great for when you're trying to collect all the knowledge you have on a particular topic when it isn't captured by your directory structure. (e.g. all notes on #programming may span many different directories)","title":"When Would This Be Used"},{"location":"tags/Filter.html#example","text":"","title":"Example"},{"location":"tags/Filter.html#how-does-it-work","text":"I don't remember haha. Basically there is a bash function that finds tags in /TMSU/ and it's recursively called with t until any key is pressed. The chosen tags are subtracted from the concurrent tags by using comm : ConcurrentTags = \" $( comm -13 < ( echo \" $ChosenTags \" | sort ) <(echo \" $ConcurrentTags \" | sort))\" The relevant script is in bin/tags/FilterNotesByTMSUTag.sh This will probably change to the default app when I get time to look at it, just change it to whatever app you like in /bin/tags/FilterNotesByTMSUTag.sh \u21a9","title":"How does it Work"},{"location":"tags/create.html","text":"Note Start this with cadmus tags create Warning The tags stuff is a work in progress* , it's a bit rough around the edges. What does it do \u00b6 This starts an interactive dialog to extract inline #tags as well as tags in a YAML header and pass them to TMSU . How Do I use it \u00b6 After running the command type a menu will be displayed, if there is no pre-existing TMSU database, press n to create one and then re-execute cadmus tags create . From there usually you will want to extract both types of tags so press b , cadmus will sync the tags between your notes and TMSU 1 When Would This Be Used \u00b6 This needs to be used every time your tags are changed in order to bring tmsu back in sync, otherwise when you look for tags it won't show the correct notes. Example \u00b6 How does it Work \u00b6 Hash tags \u00b6 Hash tags are easy, just use ripgrep with pcre2 : rg --pcre2 '(?<=\\s#)[a-zA-Z]+(?=\\s)' -t markdown -o $NOTE_DIR \\ | sed s+:+ \\ + | sed s/^/tmsu \\ tag \\ / YAML Tags \u00b6 This is a little more involved, it's essentially a couple of `for`` loops over the files, I did it in R first but it was too slow so I redid it in NodeJS , checkout these files for the source code: /bin/tags/yaml-parse.js /home/ryan/.cadmus/bin/tags/ListTags.R Integrating with Vim \u00b6 I put these lines in my .vimrc to generate a list and filter tags using FZF.vim: imap < expr > < C - c >< C - y > fzf# vim # complete ( 'node ~/bin/printMarkdownTags/yaml-parse.js $HOME/Notes/MD/notes \\| sort -u' ) imap < expr > < C - c >< C - t > fzf# vim # complete ( 'rg --pcre2 \"\\s#[a-zA-Z-@]+\\s\" -o --no-filename $HOME/Notes/MD -t md \\| sort -u' ) Dependencies \u00b6 This requires, TMSU, nodejs and ripgrep with pcre2. I played with the idea of avoiding TMSU but it works really well and the Virtual File System is really neat. \u21a9","title":"Create"},{"location":"tags/create.html#what-does-it-do","text":"This starts an interactive dialog to extract inline #tags as well as tags in a YAML header and pass them to TMSU .","title":"What does it do"},{"location":"tags/create.html#how-do-i-use-it","text":"After running the command type a menu will be displayed, if there is no pre-existing TMSU database, press n to create one and then re-execute cadmus tags create . From there usually you will want to extract both types of tags so press b , cadmus will sync the tags between your notes and TMSU 1","title":"How Do I use it"},{"location":"tags/create.html#when-would-this-be-used","text":"This needs to be used every time your tags are changed in order to bring tmsu back in sync, otherwise when you look for tags it won't show the correct notes.","title":"When Would This Be Used"},{"location":"tags/create.html#example","text":"","title":"Example"},{"location":"tags/create.html#how-does-it-work","text":"","title":"How does it Work"},{"location":"tags/create.html#hash-tags","text":"Hash tags are easy, just use ripgrep with pcre2 : rg --pcre2 '(?<=\\s#)[a-zA-Z]+(?=\\s)' -t markdown -o $NOTE_DIR \\ | sed s+:+ \\ + | sed s/^/tmsu \\ tag \\ /","title":"Hash tags"},{"location":"tags/create.html#yaml-tags","text":"This is a little more involved, it's essentially a couple of `for`` loops over the files, I did it in R first but it was too slow so I redid it in NodeJS , checkout these files for the source code: /bin/tags/yaml-parse.js /home/ryan/.cadmus/bin/tags/ListTags.R","title":"YAML Tags"},{"location":"tags/create.html#integrating-with-vim","text":"I put these lines in my .vimrc to generate a list and filter tags using FZF.vim: imap < expr > < C - c >< C - y > fzf# vim # complete ( 'node ~/bin/printMarkdownTags/yaml-parse.js $HOME/Notes/MD/notes \\| sort -u' ) imap < expr > < C - c >< C - t > fzf# vim # complete ( 'rg --pcre2 \"\\s#[a-zA-Z-@]+\\s\" -o --no-filename $HOME/Notes/MD -t md \\| sort -u' )","title":"Integrating with Vim"},{"location":"tags/create.html#dependencies","text":"This requires, TMSU, nodejs and ripgrep with pcre2. I played with the idea of avoiding TMSU but it works really well and the Virtual File System is really neat. \u21a9","title":"Dependencies"},{"location":"tools/BackLinks.html","text":"Note Start this with cadmus tools backlinks What does it do \u00b6 This takes a notes path from the clipboard and displays in the terminal any files that link to it using either: [markdown](./links.md) [[wiki-links]] How Do I use it \u00b6 Copy a note path to the clipboard then run cadmus tools backlinks , any notes that link to it will be displayed in the terminal. When Would This Be Used \u00b6 This is handy when you have some piece of code, somewhere, that you can't find but you're sure you linked to. Example \u00b6 How does it Work \u00b6 This is just more ripgrep : rg -e \"\\[.*\\]\\(.* $term \\.md\\)\" -e \"\\[\\[ $term \\]\\]\" -e \"\\[\\[ $term .*\\]\\]\" \\ ~/Notes/MD/notes \\ -t markdown -ol Note See the script in /bin/tools/List-Backlinks.sh","title":"Display Back Links"},{"location":"tools/BackLinks.html#what-does-it-do","text":"This takes a notes path from the clipboard and displays in the terminal any files that link to it using either: [markdown](./links.md) [[wiki-links]]","title":"What does it do"},{"location":"tools/BackLinks.html#how-do-i-use-it","text":"Copy a note path to the clipboard then run cadmus tools backlinks , any notes that link to it will be displayed in the terminal.","title":"How Do I use it"},{"location":"tools/BackLinks.html#when-would-this-be-used","text":"This is handy when you have some piece of code, somewhere, that you can't find but you're sure you linked to.","title":"When Would This Be Used"},{"location":"tools/BackLinks.html#example","text":"","title":"Example"},{"location":"tools/BackLinks.html#how-does-it-work","text":"This is just more ripgrep : rg -e \"\\[.*\\]\\(.* $term \\.md\\)\" -e \"\\[\\[ $term \\]\\]\" -e \"\\[\\[ $term .*\\]\\]\" \\ ~/Notes/MD/notes \\ -t markdown -ol Note See the script in /bin/tools/List-Backlinks.sh","title":"How does it Work"},{"location":"tools/New.html","text":"Note Start this with cadmus tools new What does it do \u00b6 This provides a dialog that sets the title, heading and filename of a note, offers tags to apply and offers fuzzy search for the appropriate directory to save the note in. How Do I use it \u00b6 After running the command multiple tags will be displayed, filter the tags by typing and use Tab to selet multiple tags and Enter to continue. Next a directory list will be presented, search through the directories by typing in the name of a directory. Finally a dialog to type in a name for the title, heading and filename (which will be made to be identical) will be offered, type in title: Spaces are fine No extension The file name will be slugified with - and the extension .md will be applied. When Would This Be Used \u00b6 This is great when you want to quickly make a new note in the right place with the right tags. Example \u00b6 How does it Work \u00b6 This just uses TMSU and Skim to choose the directories and tags.","title":"New Note"},{"location":"tools/New.html#what-does-it-do","text":"This provides a dialog that sets the title, heading and filename of a note, offers tags to apply and offers fuzzy search for the appropriate directory to save the note in.","title":"What does it do"},{"location":"tools/New.html#how-do-i-use-it","text":"After running the command multiple tags will be displayed, filter the tags by typing and use Tab to selet multiple tags and Enter to continue. Next a directory list will be presented, search through the directories by typing in the name of a directory. Finally a dialog to type in a name for the title, heading and filename (which will be made to be identical) will be offered, type in title: Spaces are fine No extension The file name will be slugified with - and the extension .md will be applied.","title":"How Do I use it"},{"location":"tools/New.html#when-would-this-be-used","text":"This is great when you want to quickly make a new note in the right place with the right tags.","title":"When Would This Be Used"},{"location":"tools/New.html#example","text":"","title":"Example"},{"location":"tools/New.html#how-does-it-work","text":"This just uses TMSU and Skim to choose the directories and tags.","title":"How does it Work"},{"location":"tools/Summary.html","text":"Summary \u00b6 Note I intend to write up more documentation as time permits, University keeps me busy though. Command Description fix This interactively repairs a relative link, that is broken, from the clipboard link This provides an dialog to generate links between files. page-import This replaces a URL in the clipboard with markdown converted from the website random This opens a random page in the default .md app rename This renames a note and uses sed to fix any links","title":"Summary"},{"location":"tools/Summary.html#summary","text":"Note I intend to write up more documentation as time permits, University keeps me busy though. Command Description fix This interactively repairs a relative link, that is broken, from the clipboard link This provides an dialog to generate links between files. page-import This replaces a URL in the clipboard with markdown converted from the website random This opens a random page in the default .md app rename This renames a note and uses sed to fix any links","title":"Summary"},{"location":"tools/webtitle.html","text":"Note Start this with cadmus tools webtitle What does it do \u00b6 This transforms a URL in the clipboard into a formatted link How Do I use it \u00b6 Copy / Paste a URL then type cadmus tools webtitle , the clipboard should be transformed into a formatted link with the right title. When Would This Be Used \u00b6 This is great for footnotes. Example \u00b6 How does it Work \u00b6 So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 1 This is the code that achieves it: sk -m -i -c 'recoll -b -t -q \"ext:md\" {} |\\ cut -c 8- | sed s/^/realpath\\ \\\"/ |\\ sed s+\\$+\\\"\\ --relative-to\\ \\\"./\\\"+ | bash' \\ --bind pgup:preview-page-up,pgdn:preview-page-down \\ --preview \"bat --color=always --line-range :500 \\ --terminal-width 80 --theme=TwoDark {+} \\ --italic-text=always \\ --decorations=always\" \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"Print Web Title"},{"location":"tools/webtitle.html#what-does-it-do","text":"This transforms a URL in the clipboard into a formatted link","title":"What does it do"},{"location":"tools/webtitle.html#how-do-i-use-it","text":"Copy / Paste a URL then type cadmus tools webtitle , the clipboard should be transformed into a formatted link with the right title.","title":"How Do I use it"},{"location":"tools/webtitle.html#when-would-this-be-used","text":"This is great for footnotes.","title":"When Would This Be Used"},{"location":"tools/webtitle.html#example","text":"","title":"Example"},{"location":"tools/webtitle.html#how-does-it-work","text":"So essentially this just uses skim and bat to filter/preview the notes, the interactive command is used with ripgrep and piping (that took me forever to figure out!!) to highlight the match in the preview. 1 This is the code that achieves it: sk -m -i -c 'recoll -b -t -q \"ext:md\" {} |\\ cut -c 8- | sed s/^/realpath\\ \\\"/ |\\ sed s+\\$+\\\"\\ --relative-to\\ \\\"./\\\"+ | bash' \\ --bind pgup:preview-page-up,pgdn:preview-page-down \\ --preview \"bat --color=always --line-range :500 \\ --terminal-width 80 --theme=TwoDark {+} \\ --italic-text=always \\ --decorations=always\" \\ --color = fg:#f8f8f2,bg:-1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c This highlighting works with both bat and MDCat , I prefer MDCat but there is a bug with footnotes preventing me from being able to use it right at the moment. \u21a9","title":"How does it Work"}],"index":{"fieldVectors":[["title/index.html",[]],["text/index.html",[0,1.526,1,1.308,2,1.574,3,0.804,4,1.438,5,0.937,6,0.487,7,0.799,8,0.804,9,0.804,10,1.551,11,0.804,12,0.786,13,1.116,14,1.326,15,0.593,16,0.618,17,0.674,18,0.449,19,0.351,20,1.819,21,0.674,22,0.467,23,0.449,24,0.537,25,0.631,26,0.804,27,1.326,28,1.335,29,0.487,30,0.445,31,0.51,32,1.004,33,1.236,34,0.449,35,1.938,36,0.804,37,1.823,38,0.804,39,0.804,40,0.804,41,0.674,42,0.674,43,0.886,44,0.674,45,0.804,46,0.674,47,0.804,48,0.804,49,0.85,50,0.804,51,0.804,52,0.804,53,0.804,54,1.461,55,0.804,56,0.804,57,0.804,58,0.432,59,0.804,60,1.482,61,1.274,62,0.593,63,1.116,64,0.804,65,0.547,66,0.804,67,0.593,68,1.461,69,0.804,70,0.674,71,0.804,72,1.225,73,0.804,74,1.145,75,0.804,76,0.804,77,0.562,78,1.326,79,0.804,80,0.388,81,0.674,82,0.804,83,0.804,84,0.804,85,0.674,86,0.804,87,1.326,88,0.674,89,0.804,90,0.804,91,0.804,92,0.804,93,0.804,94,0.804,95,0.804,96,0.388,97,0.674,98,0.562,99,0.804,100,0.804,101,0.804,102,0.804,103,1.225,104,0.534,105,0.804,106,0.593,107,0.804,108,0.804,109,1.145,110,0.804,111,0.804,112,0.804,113,0.804,114,0.804,115,0.804,116,0.804,117,0.593,118,0.804,119,0.804,120,0.674,121,0.804,122,0.674,123,0.804,124,0.804,125,0.674,126,0.804,127,0.804,128,0.804,129,0.674,130,1.326,131,0.804,132,0.804,133,0.804,134,0.534,135,0.85,136,0.757,137,0.534,138,0.534,139,0.534,140,0.534,141,0.467,142,0.467,143,0.804,144,0.534,145,1.145,146,0.534,147,0.534,148,0.804,149,0.593,150,0.804,151,0.674,152,0.487,153,0.804,154,1.461,155,0.804,156,0.804,157,0.534,158,0.674,159,0.467,160,0.804,161,0.804,162,0.804,163,0.804,164,0.51,165,0.674,166,0.804,167,1.078,168,0.804,169,1.823,170,1.326,171,0.804,172,0.487,173,0.674,174,0.804,175,0.34,176,1.326,177,1.461,178,0.804,179,0.804,180,0.449,181,0.804,182,0.804,183,0.804,184,0.804,185,1.078,186,0.804,187,0.804,188,0.804,189,0.804,190,0.674,191,0.804,192,2.009,193,1.461,194,0.674,195,0.804,196,0.804,197,0.804,198,0.804,199,1.145,200,0.804,201,0.804,202,0.804,203,0.804,204,0.804,205,0.804,206,0.804,207,0.674,208,2.112,209,0.804,210,0.804,211,1.685,212,1.824,213,1.461,214,1.461,215,1.461,216,0.804,217,0.804,218,1.335,219,0.804,220,0.804,221,0.804,222,0.804]],["title/index.html#cadmus",[0,1.119]],["text/index.html#cadmus",[0,1.684,2,4.447,3,5.673,4,3.3,5,2.647]],["title/index.html#what-is-cadmus",[0,1.119]],["text/index.html#what-is-cadmus",[0,1.321,6,2.698,7,1.769,8,4.448,9,4.448,10,2.763,11,4.448,12,2.392,13,2.008,14,4.038,15,3.283,16,1.883,17,3.731,18,2.486,19,1.944,20,3.629,21,3.731,22,2.587,23,2.486,24,0.833]],["title/index.html#how-does-it-work",[25,1.184]],["text/index.html#how-does-it-work",[0,1.558,26,5.248,27,4.764,28,3.488,29,3.184,30,0.617,31,3.328,32,2.623,33,2.623,34,2.933]],["title/index.html#how-do-i-use-it",[30,0.443]],["text/index.html#how-do-i-use-it",[]],["title/index.html#installation",[35,2.953]],["text/index.html#installation",[0,1.811,1,1.212,20,2.249,24,0.921,30,0.417,35,2.78,36,3.547,37,3.22,38,3.547,39,3.547,40,3.547,41,2.975,42,2.975,43,2.152,44,2.975,45,3.547,46,2.975,47,3.547,48,3.547,49,2.063,50,3.547,51,3.547,52,3.547,53,3.547,54,4.92,55,3.547,56,3.547,57,3.547,58,1.907,59,3.547,60,2.618,61,2.249,62,2.618,63,1.601]],["title/index.html#usage",[64,3.768]],["text/index.html#usage",[0,1.765,2,3.7,5,1.56,7,1.33,10,1.614,12,1.798,13,2.47,14,3.035,16,1.415,20,2.12,24,0.884,25,1.051,30,0.644,63,2.131,65,1.767,66,3.344,67,2.468,68,4.721,69,3.344,70,2.805,71,3.344,72,3.96,73,3.344,74,2.621,75,3.344,76,3.344,77,2.337,78,3.035,79,3.344,80,1.614,81,2.805,82,3.344,83,3.344,84,3.344,85,2.805]],["title/index.html#when-or-why-would-i-use-this",[30,0.443]],["text/index.html#when-or-why-would-i-use-this",[1,0.719,4,2.106,28,2.406,43,2.196,86,3.62,87,3.286,88,3.037,89,3.62,90,3.62,91,3.62,92,3.62,93,3.62,94,3.62,95,3.62,96,1.748,97,3.037,98,2.53,99,3.62,100,3.62,101,3.62,102,3.62,103,4.186,104,2.406,105,3.62,106,2.672,107,3.62,108,3.62,109,2.838,110,3.62,111,3.62,112,3.62,113,3.62,114,3.62,115,3.62,116,3.62,117,2.672,118,3.62,119,3.62,120,3.037]],["title/index.html#background",[121,3.768]],["text/index.html#background",[0,1.595,1,1.2,4,3.125,5,1.884,27,3.665,28,2.683,32,2.018,33,2.018,61,2.56,74,3.165,78,3.665,122,3.387,123,4.038,124,4.038,125,3.387,126,4.038,127,4.038,128,4.038,129,3.387,130,3.665,131,4.038,132,4.038,133,4.038,134,2.683,135,2.349,136,2.092]],["title/index.html#keyboard-bindings",[137,1.802,138,1.802]],["text/index.html#keyboard-bindings",[0,1.513,7,2.026,10,3.009,33,2.547,139,3.386,140,3.386,141,2.964,142,2.964,143,5.095,144,3.386,145,3.994]],["title/index.html#dependencies",[60,2.781]],["text/index.html#dependencies",[1,1.241,10,1.599,30,0.39,32,1.656,33,1.656,35,2.596,37,4.257,61,2.1,109,2.596,136,1.716,145,2.596,146,2.201,147,2.201,148,3.312,149,2.445,150,3.312,151,2.778,152,2.009,153,3.312,154,4.689,155,3.312,156,3.312,157,2.201,158,2.778,159,1.927,160,3.312,161,3.312,162,3.312,163,3.312,164,2.1,165,2.778,166,3.312,167,3.461,168,3.312,169,4.257,170,3.007,171,3.312,172,2.009,173,2.778,174,3.312,175,1.402]],["title/index.html#recommended-for-all-features",[170,2.461,176,2.461]],["text/index.html#recommended-for-all-features",[25,1.299,135,2.404,177,5.456,178,4.133,179,4.133,180,2.31,181,4.133,182,4.133,183,4.133,184,4.133,185,4.027,186,4.133,187,4.133,188,4.133,189,4.133,190,3.467,191,4.133,192,6.108,193,5.456,194,3.467,195,4.133,196,4.133,197,4.133]],["title/index.html#interesting-helpful-recommended-generally-not-strictly-necessary",[1,0.357,20,0.641,87,0.917,130,0.917,176,0.917,198,1.011,199,0.792]],["text/index.html#interesting-helpful-recommended-generally-not-strictly-necessary",[200,5.41,201,5.41,202,5.41,203,5.41,204,5.41,205,5.41,206,5.41,207,4.539]],["title/index.html#path",[208,2.106]],["text/index.html#path",[1,1.435,35,2.572,49,1.908,60,2.422,63,1.481,169,2.978,199,2.572,208,3.717,209,3.281,210,3.281,211,4.543,212,4.351,213,4.658,214,4.658,215,4.658,216,3.281,217,3.281,218,3.599,219,3.281,220,3.281,221,3.281,222,3.281]],["title/Convert.html",[223,2.953]],["text/Convert.html",[0,1.33,1,1.262,6,1.884,16,1.315,24,0.581,25,0.976,30,0.676,43,1.884,58,1.67,65,1.163,98,2.171,106,2.293,159,3.055,175,1.896,185,2.293,223,3.511,224,1.449,225,2.606,226,3.306,227,4.066,228,4.066,229,3.106,230,1.736,231,2.606,232,1.736,233,2.435,234,2.606,235,2.606,236,3.106,237,2.293,238,2.064,239,3.106,240,2.606,241,3.106,242,3.106,243,1.235,244,1.736,245,2.606,246,2.064,247,2.606]],["title/Convert.html#what-does-it-do",[]],["text/Convert.html#what-does-it-do",[6,3.232,175,2.255,225,4.47,226,3.933,227,4.837,228,4.837,229,5.328,230,2.977,231,4.47]],["title/Convert.html#how-do-i-use-it",[30,0.443]],["text/Convert.html#how-do-i-use-it",[0,1.41,43,2.881,58,2.554,65,1.778,159,2.763,175,2.01,185,3.506,223,3.723,226,3.506,227,4.312,228,4.312,232,2.654,233,3.723,234,3.985,235,3.985,236,4.75,237,3.506]],["title/Convert.html#when-would-this-be-used",[30,0.443]],["text/Convert.html#when-would-this-be-used",[1,1.059,30,0.627,98,3.724,106,3.933,238,3.541,239,5.328,240,4.47,241,5.328,242,5.328]],["title/Convert.html#example",[243,1.498]],["text/Convert.html#example",[244,3.39]],["title/Convert.html#how-does-it-work",[25,1.184]],["text/Convert.html#how-does-it-work",[16,2.326,30,0.647,159,3.795,245,4.61,246,3.652,247,4.61]],["title/Export.html",[212,2.781]],["text/Export.html",[0,1.347,1,1.22,6,1.918,12,1.701,16,1.338,24,1.085,25,0.994,30,0.682,33,1.581,43,1.918,58,1.701,65,1.184,80,1.527,159,3.372,185,2.334,212,3.916,224,1.476,225,2.653,232,1.767,233,4.159,234,2.653,235,2.653,243,1.258,244,1.767,245,2.653,246,2.102,247,2.653,248,3.162,249,3.162,250,2.102,251,2.21,252,2.653,253,3.162,254,2.653,255,3.162,256,3.162]],["title/Export.html#what-does-it-do",[]],["text/Export.html#what-does-it-do",[6,3.282,24,1.013,30,0.637,159,3.147,212,3.993,225,4.539,233,5.067]],["title/Export.html#how-do-i-use-it",[30,0.443]],["text/Export.html#how-do-i-use-it",[0,1.391,24,0.877,33,2.342,43,2.843,58,2.52,65,1.754,159,2.726,185,3.459,212,3.459,232,2.619,233,3.673,234,3.931,235,3.931,248,4.686,249,4.686,250,3.114,251,3.275,252,3.931]],["title/Export.html#when-would-this-be-used",[30,0.443]],["text/Export.html#when-would-this-be-used",[12,2.955,24,1.029,80,2.653,253,5.495,254,4.61,255,5.495,256,5.495]],["title/Export.html#example",[243,1.498]],["text/Export.html#example",[244,3.39]],["title/Export.html#how-does-it-work",[25,1.184]],["text/Export.html#how-does-it-work",[16,2.326,30,0.647,159,3.795,245,4.61,246,3.652,247,4.61]],["title/find.html",[10,1.819]],["text/find.html",[0,0.482,1,1.409,5,0.421,7,0.646,10,1.068,12,1.189,13,0.408,15,0.667,16,0.382,22,0.525,24,0.801,25,0.695,29,0.548,30,0.366,31,1.029,32,0.451,33,0.451,44,0.758,63,0.408,65,0.338,80,0.436,96,1.503,104,0.6,134,0.6,135,0.525,137,1.079,138,2.686,139,1.079,140,0.6,141,2.195,142,0.944,146,1.47,151,0.758,152,1.342,157,1.079,159,0.944,164,1.029,173,2.612,175,1.597,180,0.907,208,1.236,224,0.757,230,1.509,240,0.758,243,0.359,244,0.505,246,0.6,257,0.486,258,1.503,259,1.198,260,0.841,261,0.667,262,1.342,263,0.6,264,0.758,265,0.944,266,0.758,267,0.758,268,0.548,269,0.985,270,0.985,271,0.548,272,1.198,273,2.989,274,1.632,275,0.758,276,0.758,277,0.631,278,0.758,279,0.758,280,0.758,281,0.758,282,1.273,283,0.631,284,0.758,285,0.758,286,0.667,287,0.758,288,0.758,289,0.758,290,0.758,291,0.758,292,0.903,293,0.903,294,0.758,295,0.903,296,0.903,297,0.667,298,0.548,299,0.667,300,0.667,301,0.667,302,0.758,303,0.505,304,0.667,305,0.667,306,0.903,307,0.667,308,0.6,309,0.758,310,1.146,311,1.623,312,1.623,313,0.903,314,0.667,315,1.079,316,0.667,317,0.667,318,0.667,319,0.667,320,0.667,321,0.903,322,2.559,323,0.903,324,0.903,325,0.903,326,0.903,327,0.903,328,0.903,329,0.903,330,0.903,331,0.903,332,1.079,333,0.667,334,0.6,335,1.623,336,2.211,337,2.211,338,2.298,339,0.903,340,0.903,341,0.903,342,0.903,343,1.623,344,0.903,345,0.903,346,1.623,347,1.362,348,0.903,349,1.623,350,0.903,351,0.903,352,0.903,353,0.667,354,0.667,355,0.758,356,0.758,357,0.758,358,0.758,359,1.198,360,0.758,361,0.758,362,0.6,363,0.667,364,0.667,365,0.631,366,0.667,367,0.667,368,0.573]],["title/find.html#what-does-it-do",[]],["text/find.html#what-does-it-do",[10,2.695,24,1.045,224,2.605,257,3.002,258,2.695,259,4.121]],["title/find.html#how-do-i-use-it",[30,0.443]],["text/find.html#how-do-i-use-it",[1,1.116,7,1.396,15,2.592,16,1.486,24,1.052,63,1.585,65,1.314,80,1.695,96,1.695,137,2.333,139,2.333,141,2.042,142,2.042,152,2.13,175,1.486,208,1.962,230,1.962,246,2.333,258,1.695,259,2.592,260,1.819,261,2.592,262,2.964,263,2.333,264,2.946,265,2.842,266,2.946,267,2.946,268,2.13,269,2.13,270,2.13,271,2.13,272,2.592,273,2.454,274,2.592,275,2.946,276,2.946]],["title/find.html#keyboard-shortcuts",[137,1.802,139,1.802]],["text/find.html#keyboard-shortcuts",[1,0.759,13,1.723,22,2.221,24,1.099,96,1.843,140,2.537,141,3.01,175,1.616,208,2.891,230,3.28,258,1.843,269,2.316,270,2.316,273,3.616,274,3.819,277,2.668,278,3.203,279,3.203,280,3.203,281,3.203,282,2.993,283,2.668,284,3.203,285,3.203,286,2.818,287,3.203,288,3.203]],["title/find.html#when-would-this-be-used",[30,0.443]],["text/find.html#when-would-this-be-used",[0,1.355,1,1.273,10,2.203,31,2.894,141,2.655,142,2.655,180,3.252,260,2.365,272,3.369,289,3.829,290,3.829,291,3.829,292,4.564,293,4.564,294,3.829,295,4.564,296,4.564]],["title/find.html#example",[243,1.498]],["text/find.html#example",[]],["title/find.html#how-does-it-work",[25,1.184]],["text/find.html#how-does-it-work",[1,1.438,5,0.61,7,0.52,12,1.591,24,0.245,25,0.707,29,0.793,30,0.348,31,0.829,32,0.654,33,0.654,44,1.097,96,1.428,104,0.869,134,0.869,135,0.761,138,3.248,141,1.721,146,1.966,151,1.097,152,1.364,157,1.495,159,1.308,164,1.426,173,3.321,175,1.675,240,1.097,244,0.731,258,1.086,262,0.793,273,3.022,282,1.025,297,0.965,298,0.793,299,0.965,300,0.965,301,0.965,302,1.097,303,0.731,304,0.965,305,0.965,306,1.308,307,0.965,308,0.869,309,1.097,310,1.533,311,2.249,312,2.249,313,1.308,314,0.965,315,1.495,316,0.965,317,0.965,318,0.965,319,0.965,320,0.965,321,1.308,322,3.191,323,1.308,324,1.308,325,1.308,326,1.308,327,1.308,328,1.308,329,1.308,330,1.308,331,1.308,332,1.495,333,0.965,334,0.869,335,2.249,336,2.959,337,2.959,338,2.922,339,1.308,340,1.308,341,1.308,342,1.308,343,2.249,344,1.308,345,1.308,346,2.249,347,1.887,348,1.308,349,2.249,350,1.308,351,1.308,352,1.308,353,0.965,354,0.965,355,1.097,356,1.097,357,1.097,358,1.097,359,1.66,360,1.097,361,1.097,362,0.869,363,0.965,364,0.965,365,0.914,366,0.965,367,0.965,368,0.829]],["title/preview.html",[258,1.819]],["text/preview.html",[0,1.544,1,1.254,5,1.424,24,1.133,25,0.959,30,0.612,58,1.641,63,1.378,65,1.143,135,2.572,224,2.063,232,1.706,243,1.214,244,1.706,254,2.56,258,2.922,303,1.706,369,4.363,370,2.771,371,3.052,372,3.052,373,4.015,374,3.052,375,3.052,376,3.052,377,2.028,378,3.052,379,3.052,380,3.052,381,3.052,382,2.56,383,3.052,384,3.052,385,3.052,386,3.052,387,2.56]],["title/preview.html#what-does-it-do",[]],["text/preview.html#what-does-it-do",[5,2.524,24,1.013,63,2.442,224,2.524,303,3.023,369,4.539,370,4.911,371,5.41]],["title/preview.html#how-do-i-use-it",[30,0.443]],["text/preview.html#how-do-i-use-it",[0,1.834,24,0.94,58,2.701,65,1.88,232,2.807,258,2.982,369,4.213,372,5.022,373,4.559,374,5.022,375,5.022]],["title/preview.html#when-would-this-be-used",[30,0.443]],["text/preview.html#when-would-this-be-used",[1,0.919,24,1.098,135,3.413,254,3.879,258,2.832,373,4.198,376,4.624,377,3.073,378,4.624,379,4.624,380,4.624,381,4.624,382,3.879,383,4.624,384,4.624,385,4.624]],["title/preview.html#example",[243,1.498]],["text/preview.html#example",[244,3.39]],["title/preview.html#how-does-it-work",[25,1.184]],["text/preview.html#how-does-it-work",[30,0.678,369,4.838,386,5.767,387,4.838]],["title/search.html",[16,1.595]],["text/search.html",[0,0.595,1,1.361,5,0.534,7,0.797,10,0.553,13,0.517,16,1.543,22,1.166,24,0.901,25,0.84,29,1.216,30,0.429,31,0.726,32,0.572,33,0.572,49,0.666,58,0.616,61,1.271,62,0.845,63,0.517,65,0.429,80,0.553,88,0.961,96,1.548,104,0.761,134,0.761,135,0.666,137,1.332,138,0.761,139,1.332,140,0.761,141,1.866,142,1.555,144,1.332,145,0.898,146,1.776,147,0.761,152,1.621,157,1.332,172,1.216,175,0.848,180,1.12,208,1.494,218,0.761,224,0.935,230,1.793,232,0.64,243,0.455,244,0.64,246,0.761,250,0.761,257,0.616,258,1.76,259,1.479,260,1.039,262,1.216,263,0.761,264,0.961,265,1.166,266,0.961,267,0.961,268,0.695,269,1.216,270,1.216,271,0.695,272,1.479,273,1.868,274,1.973,275,0.961,276,0.961,277,0.8,278,0.961,279,0.961,280,0.961,281,0.961,282,0.898,283,0.8,284,0.961,285,0.961,286,0.845,287,0.961,288,0.961,289,0.961,290,0.961,291,0.961,294,0.961,297,0.845,298,0.695,299,0.845,300,0.845,301,0.845,302,0.961,303,0.64,304,0.845,305,0.845,307,0.845,308,1.332,310,0.593,314,0.845,315,0.761,316,0.845,317,0.845,318,0.845,319,0.845,320,0.845,322,0.845,332,1.332,333,0.845,334,0.761,353,0.845,354,0.845,355,0.961,356,0.961,357,0.961,358,0.961,359,1.479,360,0.961,361,0.961,362,0.761,363,0.845,364,0.845,365,0.8,366,0.845,367,0.845,368,0.726,388,1.145,389,1.145,390,0.761,391,0.961,392,1.145,393,2.005,394,1.145,395,1.145,396,0.961,397,1.145,398,0.961,399,0.845,400,0.961,401,0.961,402,0.961,403,0.8,404,0.961,405,0.961,406,0.961,407,0.961,408,2.005,409,1.145]],["title/search.html#what-does-it-do",[]],["text/search.html#what-does-it-do",[16,2.363,24,1.045,224,2.605,257,3.002,258,2.695,259,4.121]],["title/search.html#how-do-i-use-it",[30,0.443]],["text/search.html#how-do-i-use-it",[1,1.171,7,1.305,16,1.389,24,1.014,58,1.764,61,2.08,62,2.422,63,1.481,65,1.228,80,1.584,96,1.584,137,2.18,139,2.18,141,1.908,142,1.908,152,1.99,175,1.389,208,1.834,218,2.18,230,1.834,232,1.834,246,2.18,250,2.18,258,1.584,259,2.422,260,1.7,262,1.99,263,2.18,264,2.752,265,2.709,266,2.752,267,2.752,268,1.99,269,1.99,270,1.99,271,1.99,272,2.422,273,2.293,274,2.422,275,2.752,276,2.752,282,2.572,388,3.281,389,3.281]],["title/search.html#keyboard-shortcuts",[137,1.802,139,1.802]],["text/search.html#keyboard-shortcuts",[1,0.759,13,1.723,22,2.221,24,1.099,96,1.843,140,2.537,141,3.01,175,1.616,208,2.891,230,3.28,258,1.843,269,2.316,270,2.316,273,3.616,274,3.819,277,2.668,278,3.203,279,3.203,280,3.203,281,3.203,283,2.668,284,3.203,285,3.203,286,2.818,287,3.203,288,3.203,302,3.203]],["title/search.html#when-would-this-be-used",[30,0.443]],["text/search.html#when-would-this-be-used",[0,1.304,1,0.873,16,1.859,88,3.685,141,2.555,142,2.555,180,3.173,260,2.276,272,3.242,289,3.685,290,3.685,291,3.685,294,3.685,390,2.919,391,3.685,392,4.392,393,5.677,394,4.392,395,4.392,396,3.685,397,4.392]],["title/search.html#example",[243,1.498]],["text/search.html#example",[]],["title/search.html#how-does-it-work",[25,1.184]],["text/search.html#how-does-it-work",[1,1.409,5,0.93,7,0.792,10,0.962,16,0.843,22,1.159,24,0.373,25,1.003,29,1.937,30,0.47,31,1.263,32,0.996,33,0.996,49,1.159,61,1.263,96,1.541,104,1.324,134,1.324,135,1.159,138,1.324,142,1.159,144,2.122,145,1.562,146,2.654,147,1.324,152,1.937,157,2.122,172,1.937,244,1.114,258,1.541,262,1.209,297,1.471,298,1.209,299,1.471,300,1.471,301,1.471,303,1.114,304,1.471,305,1.471,307,1.471,308,2.122,310,1.032,314,1.471,315,1.324,316,1.471,317,1.471,318,1.471,319,1.471,320,1.471,322,1.471,332,2.122,333,1.471,334,1.324,353,1.471,354,1.471,355,1.672,356,1.672,357,1.672,358,1.672,359,2.356,360,1.672,361,1.672,362,1.324,363,1.471,364,1.471,365,1.393,366,1.471,367,1.471,368,1.263,398,1.672,399,1.471,400,1.672,401,1.672,402,1.672,403,1.393,404,1.672,405,1.672,406,1.672,407,1.672,408,3.193,409,1.993]],["title/Misc/Summary-Misc.html",[410,3.161]],["text/Misc/Summary-Misc.html",[0,1.583,1,1.273,4,2.322,7,1.588,24,0.747,30,0.627,41,3.349,65,1.494,80,1.927,96,1.927,98,2.79,190,3.349,224,1.863,411,4.473,412,3.992,413,3.992,414,3.349,415,2.653,416,3.129,417,3.349,418,3.992,419,3.992,420,3.992,421,3.992,422,3.992]],["title/Misc/Summary-Misc.html#what-does-it-do",[]],["text/Misc/Summary-Misc.html#what-does-it-do",[4,3.147,41,4.539,96,2.612,412,5.41,413,5.41,414,4.539,415,3.595,416,4.241]],["title/Misc/Summary-Misc.html#how-do-i-use-it",[30,0.443]],["text/Misc/Summary-Misc.html#how-do-i-use-it",[0,1.658,1,1.109,7,2.22,65,2.09,411,4.683,417,4.683]],["title/Misc/Summary-Misc.html#when-would-this-be-used",[30,0.443]],["text/Misc/Summary-Misc.html#when-would-this-be-used",[80,2.612,98,3.781,190,4.539,418,5.41,419,5.41,420,5.41,421,5.41,422,5.41]],["title/Misc/windows.html",[415,2.504]],["text/Misc/windows.html",[0,1.386,1,1.312,5,1.186,18,2.158,24,0.723,25,0.799,30,0.613,46,2.133,49,1.479,58,1.367,62,1.877,63,1.148,65,0.952,67,1.877,80,1.227,135,1.479,147,1.69,149,2.85,180,1.421,218,1.69,224,1.186,232,1.421,237,1.877,243,1.011,244,1.421,250,1.69,251,1.777,257,1.367,260,1.317,261,1.877,265,1.479,268,1.542,309,2.133,338,1.877,347,2.133,377,1.69,398,2.133,411,3.917,414,2.133,415,3.923,423,2.898,424,3.505,425,4.733,426,2.542,427,3.862,428,2.542,429,3.862,430,2.133,431,2.542,432,2.542,433,2.133]],["title/Misc/windows.html#what-does-it-do",[]],["text/Misc/windows.html#what-does-it-do",[5,2.605,251,3.902,261,4.121,338,4.121,415,3.71,424,5.068]],["title/Misc/windows.html#how-do-i-use-it",[30,0.443]],["text/Misc/windows.html#how-do-i-use-it",[0,1.62,18,2.31,24,0.774,58,2.222,62,3.051,63,1.865,65,1.547,218,2.747,232,2.31,250,2.747,257,2.222,260,2.142,265,2.404,268,2.507,411,4.577,414,3.467,415,4.059,425,3.752,426,4.133,427,5.456,428,4.133,429,5.456]],["title/Misc/windows.html#when-would-this-be-used",[30,0.443]],["text/Misc/windows.html#when-would-this-be-used",[30,0.608,80,2.496,135,3.008,180,2.89,237,3.816,377,3.436,415,3.436,424,4.694,430,4.338,431,5.171,432,5.171]],["title/Misc/windows.html#example",[243,1.498]],["text/Misc/windows.html#example",[]],["title/Misc/windows.html#todo",[244,2.106]],["text/Misc/windows.html#todo",[]],["title/Misc/windows.html#how-does-it-work",[25,1.184]],["text/Misc/windows.html#how-does-it-work",[1,1.341,18,2.551,30,0.537,46,3.829,49,2.655,67,3.369,147,3.033,149,4.295,309,3.829,347,3.829,398,3.829,415,3.033,425,5.815,433,3.829]],["title/Tools/New.html",[24,0.507,434,2.001]],["text/Tools/New.html",[1,1.165,24,1.097,434,4.328]],["title/Tools/New.html#new-note",[24,0.507,434,2.001]],["text/Tools/New.html#new-note",[]],["title/tags/Filter.html",[18,2.106]],["text/tags/Filter.html",[0,0.489,1,1.346,2,1.29,7,0.655,10,1.319,13,0.743,16,0.697,18,1.527,19,2.746,24,0.763,25,0.517,28,1.094,30,0.412,34,0.92,49,0.957,63,1.233,65,0.616,72,1.381,74,1.29,77,1.15,96,0.795,103,1.381,117,1.215,120,1.381,136,2.112,180,0.92,199,1.29,207,1.381,211,2.292,224,1.275,238,1.094,243,0.655,262,1.657,263,1.094,265,2.037,268,0.998,269,0.998,270,1.657,271,0.998,277,2.447,310,1.415,334,1.094,338,2.016,377,1.094,387,1.381,390,1.094,396,1.381,417,1.381,430,1.381,435,2.937,436,1.646,437,2.745,438,1.215,439,2.732,440,1.381,441,1.646,442,1.646,443,1.646,444,3.7,445,1.646,446,1.646,447,2.732,448,1.646,449,1.646,450,1.646,451,1.646,452,1.646,453,1.646,454,1.646,455,1.646,456,1.646,457,1.646,458,1.646,459,1.646,460,1.646,461,1.646,462,1.646,463,1.646,464,1.646,465,1.646,466,1.646,467,2.732,468,2.732,469,1.646,470,1.646,471,2.292,472,1.646,473,2.732,474,1.646]],["title/tags/Filter.html#what-does-it-do",[]],["text/tags/Filter.html#what-does-it-do",[1,0.97,18,2.728,19,2.887,24,0.914,72,4.096,77,3.412,120,4.096,136,3.146,199,3.827,435,4.096,436,4.882,437,3.827]],["title/tags/Filter.html#how-do-i-use-it",[30,0.443]],["text/tags/Filter.html#how-do-i-use-it",[1,0.652,7,1.305,10,1.584,13,1.481,16,1.389,19,2.906,24,0.614,34,1.834,65,1.228,96,1.584,136,1.7,207,2.752,224,1.531,262,2.826,263,2.18,265,2.709,268,1.99,271,1.99,277,3.255,310,1.7,334,2.18,338,3.438,435,2.752,438,2.422,439,4.658,440,2.752,441,3.281,442,3.281,443,3.281,444,4.916,445,3.281,446,3.281,447,4.658,448,3.281,449,3.281,450,3.281]],["title/tags/Filter.html#when-would-this-be-used",[30,0.443]],["text/tags/Filter.html#when-would-this-be-used",[2,3.673,24,0.877,63,2.671,103,3.931,180,2.619,238,3.114,451,4.686,452,4.686,453,4.686,454,4.686,455,4.686,456,4.686,457,4.686,458,4.686,459,4.686,460,4.686,461,4.686]],["title/tags/Filter.html#example",[243,1.498]],["text/tags/Filter.html#example",[]],["title/tags/Filter.html#how-does-it-work",[25,1.184]],["text/tags/Filter.html#how-does-it-work",[1,1.426,10,1.461,19,2.261,28,2.011,30,0.356,49,1.76,74,2.372,117,2.233,136,1.568,211,3.687,265,1.76,269,1.836,270,2.666,277,2.115,310,1.568,377,2.011,387,2.538,390,2.011,396,2.538,417,2.538,430,2.538,435,2.538,437,3.445,444,2.747,462,3.026,463,3.026,464,3.026,465,3.026,466,3.026,467,4.395,468,4.395,469,3.026,470,3.026,471,3.687,472,3.026,473,4.395,474,3.026]],["title/tags/create.html",[77,2.633]],["text/tags/create.html",[0,0.825,1,1.405,7,0.479,12,0.648,13,1.254,18,0.673,19,2.497,20,0.764,24,0.52,25,0.873,29,0.731,30,0.443,32,1.047,34,0.673,43,1.271,58,0.648,60,0.889,65,0.451,70,1.01,77,1.942,80,0.581,97,1.01,98,0.842,117,1.546,122,1.01,129,1.01,134,1.392,136,2.139,144,0.8,149,1.546,158,1.01,164,1.328,167,2.452,172,1.271,224,0.977,232,0.673,237,0.889,243,0.479,257,0.648,260,1.085,265,1.218,271,0.731,283,1.464,286,0.889,298,0.731,303,0.673,308,2.744,310,1.44,315,0.8,362,0.8,377,0.8,382,1.01,390,0.8,391,1.01,399,0.889,403,1.464,416,1.642,433,1.01,437,0.944,438,0.889,440,1.01,471,1.757,475,1.373,476,1.373,477,1.373,478,1.373,479,1.373,480,1.901,481,1.204,482,1.901,483,1.204,484,1.204,485,1.204,486,1.204,487,1.204,488,1.204,489,1.204,490,1.204,491,1.204,492,1.204,493,1.204,494,1.093,495,1.204,496,1.204,497,1.204,498,1.901,499,1.204,500,1.204,501,1.901,502,1.204,503,1.204,504,1.204,505,1.204,506,0.889,507,1.204,508,1.204,509,1.204,510,1.204,511,1.204,512,1.901,513,1.204,514,1.204,515,1.901,516,1.204,517,1.204,518,2.523,519,1.204,520,1.204,521,1.204,522,2.094,523,2.094,524,2.094,525,1.204,526,1.204,527,2.094,528,1.204,529,1.204,530,0.944,531,1.204,532,0.8,533,1.204,534,1.204,535,1.204,536,1.204,537,1.204]],["title/tags/create.html#what-does-it-do",[]],["text/tags/create.html#what-does-it-do",[1,0.998,19,2.7,43,3.047,136,2.602,224,2.343,257,2.701,298,3.047,480,4.559,481,5.022,482,4.559,483,5.022,484,5.022]],["title/tags/create.html#how-do-i-use-it",[30,0.443]],["text/tags/create.html#how-do-i-use-it",[0,1.536,1,1.028,7,1.518,19,2.564,24,0.715,34,2.133,65,1.429,77,3.616,80,1.843,136,2.681,144,2.537,237,2.818,260,2.681,265,3.01,271,2.316,362,2.537,399,2.818,416,2.993,440,3.203,480,3.466,485,3.818,486,3.818,487,3.818,488,3.818,489,3.818,490,3.818,491,3.818]],["title/tags/create.html#when-would-this-be-used",[30,0.443]],["text/tags/create.html#when-would-this-be-used",[19,2.607,24,0.889,30,0.559,70,3.985,136,2.461,377,3.156,390,3.156,391,3.985,416,3.723,437,3.723,492,4.75,493,4.75,494,4.312,495,4.75,496,4.75,497,4.75]],["title/tags/create.html#example",[243,1.498]],["text/tags/create.html#example",[]],["title/tags/create.html#how-does-it-work",[25,1.184]],["text/tags/create.html#how-does-it-work",[]],["title/tags/create.html#hash-tags",[19,1.185,498,2.461]],["text/tags/create.html#hash-tags",[1,1.44,12,2.197,19,2.366,30,0.481,32,2.042,164,2.59,167,3.996,172,3.284,283,2.855,310,2.117,403,2.855,498,3.708,499,4.085,500,4.085,501,3.708,502,4.085,503,4.085,504,4.085]],["title/tags/create.html#yaml-tags",[19,1.185,482,2.461]],["text/tags/create.html#yaml-tags",[1,0.884,13,2.584,29,2.698,97,3.731,117,3.283,129,3.731,303,2.486,382,3.731,433,3.731,505,4.448,506,3.283,507,4.448,508,4.448,509,4.448,510,4.448,511,4.448,512,4.038,513,4.448,514,4.448,515,4.038,516,4.448]],["title/tags/create.html#integrating-with-vim",[517,2.711,518,2.461]],["text/tags/create.html#integrating-with-vim",[1,1.452,18,1.621,19,1.267,20,1.839,30,0.341,149,3.145,158,2.433,164,1.839,167,2.141,283,2.027,286,2.141,308,4.12,310,2.208,315,1.927,403,2.027,438,2.141,471,3.574,501,2.633,515,2.633,518,3.868,519,2.9,520,2.9,521,2.9,522,4.261,523,4.261,524,4.261,525,2.9,526,2.9,527,4.261,528,2.9,529,2.9,530,2.274,531,2.9,532,1.927]],["title/tags/create.html#dependencies",[60,2.781]],["text/tags/create.html#dependencies",[1,0.931,13,2.115,25,1.473,32,2.342,43,2.843,122,3.931,134,3.932,136,3.066,167,3.459,232,2.619,512,4.254,533,4.686,534,4.686,535,4.686,536,4.686,537,4.686]],["title/tools/BackLinks.html",[23,1.183,34,1.183,494,1.922]],["text/tools/BackLinks.html",[0,1.186,1,1.394,4,2.323,5,1.863,10,1.283,12,1.429,13,1.2,17,4.024,21,3.35,23,2.98,24,1.07,25,0.836,28,1.767,30,0.564,32,1.329,34,2.232,65,0.995,106,1.962,164,1.685,165,2.23,175,1.69,180,1.485,208,2.232,224,1.24,230,1.485,243,1.057,303,1.485,310,1.377,506,1.962,532,1.767,538,2.658,539,2.658,540,2.658,541,2.658,542,2.658,543,2.658,544,4.797,545,2.658,546,2.658,547,2.658,548,2.658,549,2.658]],["title/tools/BackLinks.html#what-does-it-do",[]],["text/tools/BackLinks.html#what-does-it-do",[5,2.378,13,2.3,23,3.483,24,0.954,30,0.599,34,2.847,106,3.761,175,2.156,208,2.847,538,5.095,539,5.095]],["title/tools/BackLinks.html#how-do-i-use-it",[30,0.443]],["text/tools/BackLinks.html#how-do-i-use-it",[0,1.491,1,0.998,4,2.921,5,2.343,21,4.213,23,2.807,24,1.156,34,2.807,65,1.88,175,2.126,208,2.807,230,2.807]],["title/tools/BackLinks.html#when-would-this-be-used",[30,0.443]],["text/tools/BackLinks.html#when-would-this-be-used",[10,2.572,23,2.977,165,4.47,180,2.977,303,2.977,540,5.328,541,5.328,542,5.328,543,5.328]],["title/tools/BackLinks.html#example",[243,1.498]],["text/tools/BackLinks.html#example",[]],["title/tools/BackLinks.html#how-does-it-work",[25,1.184]],["text/tools/BackLinks.html#how-does-it-work",[1,1.43,12,2.249,17,5.154,24,0.783,28,2.779,32,2.091,164,2.652,310,2.167,506,3.087,532,2.779,544,6.144,545,4.182,546,4.182,547,4.182,548,4.182,549,4.182]],["title/tools/New.html",[24,0.507,434,2.001]],["text/tools/New.html",[0,0.694,1,1.073,4,1.36,6,1.419,7,0.93,13,1.056,15,3.272,16,1.533,18,1.307,19,2.495,24,0.934,25,0.735,30,0.587,33,1.169,34,1.307,42,1.962,63,2.437,65,0.875,67,1.726,80,1.129,85,3.038,109,1.833,136,1.212,194,3.038,218,1.554,224,1.091,238,1.554,243,0.93,251,3.098,252,1.962,257,1.948,260,2.586,261,1.726,263,1.554,268,1.419,368,2.296,434,2.673,438,1.726,530,2.839,532,1.554,550,3.272,551,3.288,552,3.288,553,2.339,554,2.339,555,2.339,556,2.339,557,2.339,558,2.339,559,2.339,560,2.339,561,2.339,562,2.339,563,2.339,564,2.339,565,2.339]],["title/tools/New.html#what-does-it-do",[]],["text/tools/New.html#what-does-it-do",[6,2.881,16,2.01,19,2.075,24,1.117,63,2.144,218,3.156,251,4.171,257,2.554,261,3.506,530,3.723,550,3.506,551,4.312,552,4.312,553,4.75,554,4.75]],["title/tools/New.html#how-do-i-use-it",[30,0.443]],["text/tools/New.html#how-do-i-use-it",[7,1.356,13,1.539,15,4.081,16,1.443,18,1.905,19,2.416,30,0.401,34,1.905,42,2.86,63,2.496,65,1.276,67,2.516,85,4.014,194,4.014,251,2.382,257,1.833,260,3.107,263,2.265,268,2.068,438,2.516,530,2.672,532,2.265,550,3.532,551,3.094,552,3.094,555,3.409,556,3.409,557,3.409,558,3.409,559,3.409,560,3.409,561,3.409,562,3.409,563,3.409]],["title/tools/New.html#when-would-this-be-used",[30,0.443]],["text/tools/New.html#when-would-this-be-used",[19,2.293,24,0.982,80,2.533,109,4.114,238,3.488,368,4.024,434,3.874,564,5.248,565,5.248]],["title/tools/New.html#example",[243,1.498]],["text/tools/New.html#example",[]],["title/tools/New.html#how-does-it-work",[25,1.184]],["text/tools/New.html#how-does-it-work",[19,2.439,30,0.657,33,2.791,63,2.52,136,2.893,252,4.683]],["title/tools/Summary.html",[410,3.161]],["text/tools/Summary.html",[1,0.64,6,1.954,7,1.281,12,1.732,13,1.454,20,2.042,22,1.873,23,3.267,24,0.86,30,0.379,81,2.702,96,1.555,125,2.702,140,2.14,144,2.14,172,1.954,175,1.945,223,2.525,250,2.14,257,1.732,269,1.954,270,1.954,298,1.954,332,3.055,390,2.14,410,2.702,506,2.377,532,2.14,566,3.221,567,3.221,568,3.221,569,3.221,570,3.221,571,3.221,572,3.221,573,4.597,574,3.221,575,3.221,576,3.221,577,2.525,578,3.221,579,4.597,580,4.597]],["title/tools/Summary.html#summary",[410,3.161]],["text/tools/Summary.html#summary",[6,1.99,7,1.305,12,1.764,13,1.481,20,2.08,22,1.908,23,3.294,24,0.872,30,0.386,81,2.752,96,1.584,125,2.752,140,2.18,144,2.18,172,1.99,175,1.971,223,2.572,250,2.18,257,1.764,269,1.99,270,1.99,298,1.99,332,3.095,390,2.18,506,2.422,532,2.18,566,3.281,567,3.281,568,3.281,569,3.281,570,3.281,571,3.281,572,3.281,573,4.658,574,3.281,575,3.281,576,3.281,577,2.572,578,3.281,579,4.658,580,4.658]],["title/tools/webtitle.html",[370,1.922,550,1.563,581,2.414]],["text/tools/webtitle.html",[0,0.915,1,1.407,4,1.792,5,0.889,7,0.758,22,1.109,23,1.721,24,0.577,25,0.968,29,1.156,30,0.575,31,1.208,32,0.953,33,0.953,49,1.109,61,1.208,104,1.267,138,1.267,142,1.109,146,2.576,147,1.267,152,1.869,157,2.047,172,1.869,175,1.304,224,0.889,226,2.273,230,1.065,231,1.599,238,1.267,243,0.758,258,1.487,260,0.987,262,1.156,271,1.156,297,1.407,298,1.156,299,1.407,300,1.407,301,1.407,303,1.065,304,1.407,305,1.407,307,1.407,308,2.047,310,0.987,314,1.407,315,1.267,316,1.407,317,1.407,318,1.407,319,1.407,320,1.407,322,1.407,332,2.047,333,1.407,334,1.267,353,1.407,354,1.407,359,1.407,362,1.267,363,1.407,364,1.407,365,2.153,366,1.407,367,1.407,368,1.953,399,1.407,400,1.599,401,1.599,402,1.599,403,1.332,404,1.599,405,1.599,406,1.599,407,1.599,550,1.407,577,2.414,582,3.08,583,2.796]],["title/tools/webtitle.html#what-does-it-do",[]],["text/tools/webtitle.html#what-does-it-do",[23,3.17,175,2.401,226,4.187,577,4.447,583,5.15]],["title/tools/webtitle.html#how-do-i-use-it",[30,0.443]],["text/tools/webtitle.html#how-do-i-use-it",[0,1.45,1,1.206,4,2.84,23,2.728,175,2.066,226,3.604,230,2.728,231,4.096,260,2.53,368,3.096,550,3.604,577,3.827,582,4.882,583,4.432]],["title/tools/webtitle.html#when-would-this-be-used",[30,0.443]],["text/tools/webtitle.html#when-would-this-be-used",[238,3.963,365,4.167]],["title/tools/webtitle.html#example",[243,1.498]],["text/tools/webtitle.html#example",[]],["title/tools/webtitle.html#how-does-it-work",[25,1.184]],["text/tools/webtitle.html#how-does-it-work",[1,1.398,5,1.106,7,0.943,22,1.379,24,0.444,25,0.745,29,1.438,30,0.526,31,1.503,32,1.185,33,1.185,49,1.379,61,1.503,104,1.575,138,1.575,142,1.379,146,2.971,147,1.575,152,2.22,157,2.432,172,2.22,258,1.767,262,1.438,271,1.438,297,1.749,298,1.438,299,1.749,300,1.749,301,1.749,303,1.325,304,1.749,305,1.749,307,1.749,308,2.432,310,1.228,314,1.749,315,1.575,316,1.749,317,1.749,318,1.749,319,1.749,320,1.749,322,1.749,332,2.432,333,1.749,334,1.575,353,1.749,354,1.749,359,1.749,362,1.575,363,1.749,364,1.749,365,1.656,366,1.749,367,1.749,368,1.503,399,1.749,400,1.988,401,1.988,402,1.988,403,1.656,404,1.988,405,1.988,406,1.988,407,1.988]]],"fields":["title","text"],"invertedIndex":[["",{"_index":1,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"Export.html":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"Tools/New.html":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#background":{},"index.html#dependencies":{},"index.html#installation":{},"index.html#path":{},"index.html#when-or-why-would-i-use-this":{},"preview.html":{},"preview.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#hash-tags":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#integrating-with-vim":{},"tags/create.html#what-does-it-do":{},"tags/create.html#yaml-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#how-does-it-work":{},"tools/New.html":{},"tools/Summary.html":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["1",{"_index":271,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["1,matched:#6272a4,current_fg:#50fa7b,current_bg:#381070,border:#ff79c6,prompt:#bd93f9,query:#bd93f9,marker:#f1fa8c,header:#f1fa8c",{"_index":354,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["13",{"_index":469,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["2",{"_index":282,"text":{"find.html":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["20",{"_index":324,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["3",{"_index":288,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["4",{"_index":302,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["5",{"_index":398,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["500",{"_index":317,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["8",{"_index":401,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["80",{"_index":319,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["absolut",{"_index":281,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["accept",{"_index":447,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["access",{"_index":84,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["achiev",{"_index":304,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["act",{"_index":78,"text":{"index.html":{},"index.html#background":{},"index.html#usage":{}},"title":{}}],["activ",{"_index":427,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["add",{"_index":210,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["afterward",{"_index":69,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["algebra",{"_index":296,"text":{"find.html":{},"find.html#when-would-this-be-used":{}},"title":{}}],["alia",{"_index":422,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["allow",{"_index":76,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["alt",{"_index":273,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["anoth",{"_index":432,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{}},"title":{}}],["ansi",{"_index":306,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["answer",{"_index":183,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["app",{"_index":270,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["appli",{"_index":552,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["appropri",{"_index":553,"text":{"tools/New.html":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["arbitrari",{"_index":419,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["arch",{"_index":154,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["around",{"_index":478,"text":{"tags/create.html":{}},"title":{}}],["assum",{"_index":59,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["aur",{"_index":37,"text":{"index.html":{},"index.html#dependencies":{},"index.html#installation":{}},"title":{}}],["avail",{"_index":36,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["avoid",{"_index":534,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["b",{"_index":399,"text":{"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["back",{"_index":494,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{"tools/BackLinks.html":{}}}],["background",{"_index":121,"text":{"index.html":{}},"title":{"index.html#background":{}}}],["backlink",{"_index":21,"text":{"index.html":{},"index.html#what-is-cadmus":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{}},"title":{}}],["backlinks.sh",{"_index":549,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["base",{"_index":72,"text":{"index.html":{},"index.html#usage":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{}},"title":{}}],["bash",{"_index":49,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#installation":{},"index.html#path":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["bashrc",{"_index":215,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["basic",{"_index":464,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["bat",{"_index":146,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["be",{"_index":367,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["befor",{"_index":120,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{}},"title":{}}],["below",{"_index":276,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["beneath",{"_index":79,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["between",{"_index":144,"text":{"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["bin/cadmu",{"_index":247,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-does-it-work":{}},"title":{}}],["bin/printmarkdowntags/yaml",{"_index":525,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["bin/tags/filternotesbytmsutag.sh",{"_index":473,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["bin/tags/yaml",{"_index":514,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["bin/tools/list",{"_index":548,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["binari",{"_index":179,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["bind",{"_index":138,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"index.html#keyboard-bindings":{}}}],["bit",{"_index":476,"text":{"tags/create.html":{}},"title":{}}],["both",{"_index":362,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["brew",{"_index":155,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["bring",{"_index":493,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["broken",{"_index":575,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["bug",{"_index":364,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["bunch",{"_index":26,"text":{"index.html":{},"index.html#how-does-it-work":{}},"title":{}}],["busi",{"_index":571,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["c",{"_index":308,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["cadmu",{"_index":0,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#background":{},"index.html#cadmus":{},"index.html#how-does-it-work":{},"index.html#installation":{},"index.html#keyboard-bindings":{},"index.html#usage":{},"index.html#what-is-cadmus":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"search.html":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/New.html":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{"index.html#cadmus":{},"index.html#what-is-cadmus":{}}}],["call",{"_index":387,"text":{"preview.html":{},"preview.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["campu",{"_index":385,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["can't",{"_index":543,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["captur",{"_index":455,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["cargo",{"_index":169,"text":{"index.html":{},"index.html#dependencies":{},"index.html#path":{}},"title":{}}],["case",{"_index":312,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["cat",{"_index":352,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["cd",{"_index":44,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#installation":{}},"title":{}}],["chang",{"_index":437,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["checkout",{"_index":513,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["choos",{"_index":252,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-does-it-work":{}},"title":{}}],["chosen",{"_index":444,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["chosentag",{"_index":470,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["cli",{"_index":205,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["clipboard",{"_index":175,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#what-does-it-do":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{}}],["code",{"_index":303,"text":{"find.html":{},"find.html#how-does-it-work":{},"preview.html":{},"preview.html#what-does-it-do":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#yaml-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["collect",{"_index":451,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["color",{"_index":322,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["color=alway",{"_index":314,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["come",{"_index":168,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["comm",{"_index":467,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["command",{"_index":7,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#keyboard-bindings":{},"index.html#usage":{},"index.html#what-is-cadmus":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["complet",{"_index":524,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["comput",{"_index":295,"text":{"find.html":{},"find.html#when-would-this-be-used":{}},"title":{}}],["concurr",{"_index":435,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{}},"title":{}}],["concurrenttag",{"_index":468,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["config",{"_index":68,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["config/fish/config.fish",{"_index":222,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["content",{"_index":287,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["context",{"_index":323,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["continu",{"_index":557,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["convert",{"_index":223,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{"Convert.html":{}}}],["copi",{"_index":230,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["correct",{"_index":497,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["coupl",{"_index":129,"text":{"index.html":{},"index.html#background":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["cq",{"_index":325,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["creat",{"_index":77,"text":{"index.html":{},"index.html#usage":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{"tags/create.html":{}}}],["ctrl",{"_index":141,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"search.html#when-would-this-be-used":{}},"title":{}}],["current",{"_index":439,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["cut",{"_index":147,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["d",{"_index":46,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#installation":{}},"title":{}}],["data",{"_index":89,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["databas",{"_index":440,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["decorations=alway",{"_index":407,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["default",{"_index":269,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["demonstr",{"_index":123,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["depend",{"_index":60,"text":{"index.html":{},"index.html#installation":{},"index.html#path":{},"tags/create.html":{}},"title":{"index.html#dependencies":{},"tags/create.html#dependencies":{}}}],["describ",{"_index":275,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["descript",{"_index":140,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["desk",{"_index":291,"text":{"find.html":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["dev/nul",{"_index":313,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["dialog",{"_index":257,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#what-does-it-do":{},"search.html":{},"search.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["differ",{"_index":461,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["directori",{"_index":63,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#installation":{},"index.html#path":{},"index.html#usage":{},"preview.html":{},"preview.html#what-does-it-do":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#how-does-it-work":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["dirnam",{"_index":351,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["discord",{"_index":361,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["display",{"_index":34,"text":{"index.html":{},"index.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{"tools/BackLinks.html":{}}}],["distinct",{"_index":408,"text":{"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["do",{"_index":436,"text":{"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{}},"title":{}}],["document",{"_index":81,"text":{"index.html":{},"index.html#usage":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["doesn't",{"_index":256,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{}},"title":{}}],["dokuwiki",{"_index":240,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["don't",{"_index":430,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["down",{"_index":334,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["driven",{"_index":8,"text":{"index.html":{},"index.html#what-is-cadmus":{}},"title":{}}],["e",{"_index":544,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["e.g",{"_index":457,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["e:execut",{"_index":341,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["easi",{"_index":499,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["echo",{"_index":211,"text":{"index.html":{},"index.html#path":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["edg",{"_index":479,"text":{"tags/create.html":{}},"title":{}}],["edit",{"_index":11,"text":{"index.html":{},"index.html#what-is-cadmus":{}},"title":{}}],["editor",{"_index":413,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{}},"title":{}}],["engin",{"_index":409,"text":{"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["enter",{"_index":268,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["essenti",{"_index":29,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#yaml-tags":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["even",{"_index":116,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["evernot",{"_index":127,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["exampl",{"_index":243,"text":{"Convert.html":{},"Export.html":{},"Misc/windows.html":{},"find.html":{},"preview.html":{},"search.html":{},"tags/Filter.html":{},"tags/create.html":{},"tools/BackLinks.html":{},"tools/New.html":{},"tools/webtitle.html":{}},"title":{"Convert.html#example":{},"Export.html#example":{},"Misc/windows.html#example":{},"find.html#example":{},"preview.html#example":{},"search.html#example":{},"tags/Filter.html#example":{},"tags/create.html#example":{},"tools/BackLinks.html#example":{},"tools/New.html#example":{},"tools/webtitle.html#example":{}}}],["execut",{"_index":490,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["exist",{"_index":487,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["exit",{"_index":285,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["export",{"_index":212,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"Export.html#what-does-it-do":{},"index.html":{},"index.html#path":{}},"title":{"Export.html":{}}}],["expr",{"_index":523,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["ext:md",{"_index":400,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["extens",{"_index":194,"text":{"index.html":{},"index.html#recommended-for-all-features":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["extract",{"_index":480,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["f",{"_index":347,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["f:execut",{"_index":350,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["f:interactive,pgup:preview",{"_index":331,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["fashion",{"_index":40,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["fd",{"_index":148,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["featur",{"_index":170,"text":{"index.html":{},"index.html#dependencies":{}},"title":{"index.html#recommended-for-all-features":{}}}],["fell",{"_index":112,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["fg:#f8f8f2,bg",{"_index":353,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["figur",{"_index":301,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["file",{"_index":13,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#usage":{},"index.html#what-is-cadmus":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#yaml-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["filenam",{"_index":530,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["filter",{"_index":18,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#what-is-cadmus":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{"tags/Filter.html":{}}}],["filter/preview",{"_index":297,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["final",{"_index":559,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["find",{"_index":10,"text":{"find.html":{},"find.html#what-does-it-do":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#dependencies":{},"index.html#keyboard-bindings":{},"index.html#usage":{},"index.html#what-is-cadmus":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{"find.html":{}}}],["fine",{"_index":42,"text":{"index.html":{},"index.html#installation":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["first",{"_index":509,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["fish",{"_index":217,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["fix",{"_index":573,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["follow",{"_index":443,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["footnot",{"_index":365,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{},"tools/webtitle.html#when-would-this-be-used":{}},"title":{}}],["forev",{"_index":300,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["forgot",{"_index":292,"text":{"find.html":{},"find.html#when-would-this-be-used":{}},"title":{}}],["fork",{"_index":108,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["format",{"_index":583,"text":{"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{}}],["found",{"_index":420,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["frankli",{"_index":92,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["free",{"_index":113,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["friend",{"_index":381,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["function",{"_index":74,"text":{"index.html":{},"index.html#background":{},"index.html#usage":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["further",{"_index":445,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["fuzzi",{"_index":261,"text":{"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"find.html":{},"find.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["fzf",{"_index":149,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["fzf.vim",{"_index":521,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["gener",{"_index":20,"text":{"index.html":{},"index.html#installation":{},"index.html#usage":{},"index.html#what-is-cadmus":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["git",{"_index":41,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"index.html":{},"index.html#installation":{}},"title":{}}],["github",{"_index":378,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["global",{"_index":373,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["gnu",{"_index":150,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["good",{"_index":135,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"index.html#recommended-for-all-features":{},"preview.html":{},"preview.html#when-would-this-be-used":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["googl",{"_index":389,"text":{"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["grat",{"_index":253,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{}},"title":{}}],["great",{"_index":238,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{},"tools/webtitle.html":{},"tools/webtitle.html#when-would-this-be-used":{}},"title":{}}],["grep",{"_index":145,"text":{"index.html":{},"index.html#dependencies":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["guak",{"_index":200,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["haha",{"_index":463,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["handi",{"_index":540,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["hash",{"_index":498,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{"tags/create.html#hash-tags":{}}}],["head",{"_index":551,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["header",{"_index":483,"text":{"tags/create.html":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["heard",{"_index":189,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["help",{"_index":130,"text":{"index.html":{},"index.html#background":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["here",{"_index":442,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["hey",{"_index":118,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["highlight",{"_index":152,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["home",{"_index":56,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["home/.cargo/bin",{"_index":221,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["home/.local/bin",{"_index":219,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["home/bin",{"_index":220,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["home/notes/md",{"_index":531,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["home/notes/md/not",{"_index":526,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["home/ryan/.cadmus/bin/tags/listtags.r",{"_index":516,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["html",{"_index":348,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["https://raw.githubusercontent.com/ryangreenup/cadmus/master/install.sh",{"_index":48,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["i'v",{"_index":188,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["idea",{"_index":122,"text":{"index.html":{},"index.html#background":{},"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["ident",{"_index":561,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["ignor",{"_index":311,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["imagin",{"_index":289,"text":{"find.html":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["imap",{"_index":522,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["implement",{"_index":75,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["import",{"_index":576,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["includ",{"_index":166,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["index",{"_index":62,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"index.html":{},"index.html#installation":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["inform",{"_index":94,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["init",{"_index":441,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["inlin",{"_index":481,"text":{"tags/create.html":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["insid",{"_index":246,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-does-it-work":{},"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["instal",{"_index":35,"text":{"index.html":{},"index.html#dependencies":{},"index.html#installation":{},"index.html#path":{}},"title":{"index.html#installation":{}}}],["install.sh",{"_index":50,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["instant",{"_index":264,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["integr",{"_index":517,"text":{"tags/create.html":{}},"title":{"tags/create.html#integrating-with-vim":{}}}],["intend",{"_index":566,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["interact",{"_index":298,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#what-does-it-do":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["interest",{"_index":87,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["interfac",{"_index":9,"text":{"index.html":{},"index.html#what-is-cadmus":{}},"title":{}}],["involv",{"_index":507,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["ip",{"_index":178,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["ipad",{"_index":380,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["iproute2",{"_index":177,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["isn't",{"_index":454,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["issu",{"_index":115,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["it'",{"_index":117,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["ital",{"_index":405,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["iterm2",{"_index":191,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["jq",{"_index":153,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["keep",{"_index":570,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["key",{"_index":277,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["keyboard",{"_index":137,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{"find.html#keyboard-shortcuts":{},"index.html#keyboard-bindings":{},"search.html#keyboard-shortcuts":{}}}],["kitti",{"_index":187,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["knowledg",{"_index":2,"text":{"index.html":{},"index.html#cadmus":{},"index.html#usage":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["l",{"_index":309,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["lan",{"_index":383,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["languag",{"_index":228,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#what-does-it-do":{}},"title":{}}],["latex",{"_index":233,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Export.html#what-does-it-do":{}},"title":{}}],["line",{"_index":315,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["line:style:nobold",{"_index":328,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["linear",{"_index":393,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["link",{"_index":23,"text":{"index.html":{},"index.html#what-is-cadmus":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{},"tools/BackLinks.html#when-would-this-be-used":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{"tools/BackLinks.html":{}}}],["linux/mac",{"_index":356,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["list",{"_index":438,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["littl",{"_index":505,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["local/bin/cadmu",{"_index":57,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["look",{"_index":377,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"preview.html":{},"preview.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["loop",{"_index":508,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["m",{"_index":307,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["mac",{"_index":181,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["made",{"_index":560,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["make",{"_index":109,"text":{"index.html":{},"index.html#dependencies":{},"index.html#when-or-why-would-i-use-this":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{}}],["makserv",{"_index":375,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{}},"title":{}}],["manag",{"_index":3,"text":{"index.html":{},"index.html#cadmus":{}},"title":{}}],["mani",{"_index":460,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["markdown",{"_index":12,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#usage":{},"index.html#what-is-cadmus":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["markdown](./links.md",{"_index":538,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{}},"title":{}}],["markserv",{"_index":369,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{},"preview.html#how-does-it-work":{},"preview.html#what-does-it-do":{}},"title":{}}],["marktext",{"_index":202,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["markup",{"_index":227,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#what-does-it-do":{}},"title":{}}],["match",{"_index":262,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["match:bg:30,200,30",{"_index":330,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["match:fg:21,39,200",{"_index":327,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["match:style:bold",{"_index":329,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["materi",{"_index":193,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["math",{"_index":88,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["mathematica",{"_index":293,"text":{"find.html":{},"find.html#when-would-this-be-used":{}},"title":{}}],["mathml",{"_index":349,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["md",{"_index":532,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["mdcat",{"_index":157,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["mdless",{"_index":203,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["menu",{"_index":485,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["misc",{"_index":411,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["miscellan",{"_index":412,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{}},"title":{}}],["mkdoc",{"_index":192,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["mktemp",{"_index":45,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["mod",{"_index":397,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["mode",{"_index":242,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{}},"title":{}}],["modular",{"_index":105,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["moment",{"_index":359,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["more",{"_index":506,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["much",{"_index":418,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["multipl",{"_index":85,"text":{"index.html":{},"index.html#usage":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["myself",{"_index":421,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{}},"title":{}}],["n",{"_index":488,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["name",{"_index":15,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#what-is-cadmus":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["narrow",{"_index":446,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["neat",{"_index":537,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["necessari",{"_index":199,"text":{"index.html":{},"index.html#path":{},"tags/Filter.html":{},"tags/Filter.html#what-does-it-do":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["need",{"_index":391,"text":{"search.html":{},"search.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["new",{"_index":434,"text":{"Tools/New.html":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{"Tools/New.html":{},"Tools/New.html#new-note":{},"tools/New.html":{}}}],["next",{"_index":558,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["node",{"_index":158,"text":{"index.html":{},"index.html#dependencies":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["nodej",{"_index":512,"text":{"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#yaml-tags":{}},"title":{}}],["note",{"_index":24,"text":{"Convert.html":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Export.html#what-does-it-do":{},"Export.html#when-would-this-be-used":{},"Misc/Summary-Misc.html":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"Tools/New.html":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"find.html#what-does-it-do":{},"index.html":{},"index.html#installation":{},"index.html#usage":{},"index.html#what-is-cadmus":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"preview.html#what-does-it-do":{},"preview.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"search.html#what-does-it-do":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#what-does-it-do":{},"tags/Filter.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#when-would-this-be-used":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#how-does-it-work":{},"tools/BackLinks.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#what-does-it-do":{},"tools/New.html#when-would-this-be-used":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"Tools/New.html":{},"Tools/New.html#new-note":{},"tools/New.html":{}}}],["note_dir",{"_index":503,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["notes/md/not",{"_index":545,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["number",{"_index":326,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["nvim",{"_index":196,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["o",{"_index":283,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["o:execut",{"_index":343,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["offer",{"_index":251,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["ol",{"_index":546,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["on",{"_index":237,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["onenot",{"_index":126,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["open",{"_index":96,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#when-or-why-would-i-use-this":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["oper",{"_index":38,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["option",{"_index":225,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{},"Export.html":{},"Export.html#what-does-it-do":{}},"title":{}}],["order",{"_index":492,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["ordinari",{"_index":386,"text":{"preview.html":{},"preview.html#how-does-it-work":{}},"title":{}}],["org",{"_index":241,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{}},"title":{}}],["org2md/md2mediawiki",{"_index":236,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{}},"title":{}}],["otherwis",{"_index":495,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["out",{"_index":104,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#when-or-why-would-i-use-this":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["over",{"_index":382,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["overload",{"_index":95,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["page",{"_index":332,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["pandoc",{"_index":159,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Export.html#how-does-it-work":{},"Export.html#what-does-it-do":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{}},"title":{}}],["parse.j",{"_index":515,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{},"tags/create.html#yaml-tags":{}},"title":{}}],["particular",{"_index":452,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["pass",{"_index":484,"text":{"tags/create.html":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["past",{"_index":231,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["path",{"_index":208,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#path":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{}},"title":{"index.html#path":{}}}],["path=\"$home/.cargo/bin:$path",{"_index":214,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["path=\"$home/.local/bin:$path",{"_index":213,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["pcre2",{"_index":167,"text":{"index.html":{},"index.html#dependencies":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["pdf/html/doc",{"_index":248,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{}},"title":{}}],["perform",{"_index":53,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["perl",{"_index":160,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["permit",{"_index":568,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["pgdn",{"_index":279,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["pgup",{"_index":278,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["pgup:preview",{"_index":404,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["philosophi",{"_index":101,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["piec",{"_index":541,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["pip",{"_index":209,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["pipe",{"_index":31,"text":{"find.html":{},"find.html#how-does-it-work":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["place",{"_index":565,"text":{"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{}}],["play",{"_index":533,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["pleas",{"_index":111,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["pop",{"_index":249,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{}},"title":{}}],["popup",{"_index":429,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["portabl",{"_index":39,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["post",{"_index":114,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["power",{"_index":124,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["pr'",{"_index":110,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["pre",{"_index":486,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["prefer",{"_index":363,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["present",{"_index":263,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["press",{"_index":265,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["pretti",{"_index":321,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["prevent",{"_index":366,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["preview",{"_index":258,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#how-does-it-work":{},"find.html#keyboard-shortcuts":{},"find.html#what-does-it-do":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"preview.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"search.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"preview.html":{}}}],["print",{"_index":370,"text":{"preview.html":{},"preview.html#what-does-it-do":{}},"title":{"tools/webtitle.html":{}}}],["probabl",{"_index":474,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["program",{"_index":458,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["progress",{"_index":475,"text":{"tags/create.html":{}},"title":{}}],["project",{"_index":82,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["provid",{"_index":6,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{},"Export.html":{},"Export.html#what-does-it-do":{},"index.html":{},"index.html#what-is-cadmus":{},"tools/New.html":{},"tools/New.html#what-does-it-do":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["put",{"_index":519,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["python",{"_index":161,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["q",{"_index":142,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#when-would-this-be-used":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["qr",{"_index":371,"text":{"preview.html":{},"preview.html#what-does-it-do":{}},"title":{}}],["qrencod",{"_index":372,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{}},"title":{}}],["queri",{"_index":388,"text":{"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["quick",{"_index":229,"text":{"Convert.html":{},"Convert.html#what-does-it-do":{}},"title":{}}],["quickli",{"_index":564,"text":{"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{}}],["quit",{"_index":91,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["r",{"_index":433,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["random",{"_index":579,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["rang",{"_index":316,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["ranger",{"_index":162,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["re",{"_index":489,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["read",{"_index":379,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["readabl",{"_index":204,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["realiti",{"_index":128,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["realli",{"_index":134,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["realpath",{"_index":151,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{}},"title":{}}],["reason",{"_index":431,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{}},"title":{}}],["recent",{"_index":234,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{}},"title":{}}],["recod",{"_index":163,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["recol",{"_index":61,"text":{"index.html":{},"index.html#background":{},"index.html#dependencies":{},"index.html#installation":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["recommend",{"_index":176,"text":{"index.html":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{},"index.html#recommended-for-all-features":{}}}],["recurr",{"_index":394,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["recurs",{"_index":396,"text":{"search.html":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["redid",{"_index":511,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["reimplement",{"_index":107,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["rel",{"_index":22,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"index.html":{},"index.html#what-is-cadmus":{},"search.html":{},"search.html#how-does-it-work":{},"search.html#keyboard-shortcuts":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["relat",{"_index":395,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["relev",{"_index":472,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["reloc",{"_index":414,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["rememb",{"_index":462,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["remov",{"_index":51,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["renam",{"_index":580,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["repair",{"_index":574,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["replac",{"_index":125,"text":{"index.html":{},"index.html#background":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["requir",{"_index":232,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["reson",{"_index":102,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["respect",{"_index":357,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["rf",{"_index":55,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["rg",{"_index":164,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["right",{"_index":368,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["ripgrep",{"_index":32,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"index.html#dependencies":{},"index.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#hash-tags":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["rm",{"_index":54,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["rofi",{"_index":424,"text":{"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"Misc/windows.html#when-would-this-be-used":{}},"title":{}}],["rough",{"_index":477,"text":{"tags/create.html":{}},"title":{}}],["run",{"_index":65,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#usage":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["s",{"_index":403,"text":{"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["s#)[a",{"_index":500,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["s#[a",{"_index":528,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["s/^/realpath",{"_index":402,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["s/^/tmsu",{"_index":504,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["save",{"_index":554,"text":{"tools/New.html":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["sci",{"_index":90,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["script",{"_index":28,"text":{"index.html":{},"index.html#background":{},"index.html#how-does-it-work":{},"index.html#when-or-why-would-i-use-this":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["scroll",{"_index":280,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["sd",{"_index":171,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["search",{"_index":16,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-does-it-work":{},"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#usage":{},"index.html#what-is-cadmus":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#how-does-it-work":{},"search.html#what-does-it-do":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{}},"title":{"search.html":{}}}],["sed",{"_index":172,"text":{"index.html":{},"index.html#dependencies":{},"search.html":{},"search.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["see",{"_index":547,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["selecor",{"_index":450,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["select",{"_index":338,"text":{"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"find.html":{},"find.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["selet",{"_index":556,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["set",{"_index":218,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"index.html":{},"index.html#path":{},"search.html":{},"search.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#what-does-it-do":{}},"title":{}}],["share",{"_index":254,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{},"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["shell",{"_index":27,"text":{"index.html":{},"index.html#background":{},"index.html#how-does-it-work":{}},"title":{}}],["shortcut",{"_index":139,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{"find.html#keyboard-shortcuts":{},"search.html#keyboard-shortcuts":{}}}],["shortli",{"_index":73,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["show",{"_index":70,"text":{"index.html":{},"index.html#usage":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["side",{"_index":259,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#what-does-it-do":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#what-does-it-do":{}},"title":{}}],["silent(cat",{"_index":346,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["silent(cod",{"_index":340,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["silent(echo",{"_index":336,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["silent(emac",{"_index":342,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["silent(xdg",{"_index":344,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["similar",{"_index":376,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["simpl",{"_index":99,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["simpli",{"_index":245,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Export.html":{},"Export.html#how-does-it-work":{}},"title":{}}],["sit",{"_index":290,"text":{"find.html":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["sk",{"_index":305,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["skim",{"_index":33,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"index.html#dependencies":{},"index.html#how-does-it-work":{},"index.html#keyboard-bindings":{},"search.html":{},"search.html#how-does-it-work":{},"tools/New.html":{},"tools/New.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["slow",{"_index":510,"text":{"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["slugifi",{"_index":563,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["solut",{"_index":294,"text":{"find.html":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["solv",{"_index":392,"text":{"search.html":{},"search.html#when-would-this-be-used":{}},"title":{}}],["somebodi",{"_index":255,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{}},"title":{}}],["someth",{"_index":272,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#when-would-this-be-used":{}},"title":{}}],["somewher",{"_index":542,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["sort",{"_index":471,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["sourc",{"_index":97,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/create.html":{},"tags/create.html#yaml-tags":{}},"title":{}}],["space",{"_index":562,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["span",{"_index":459,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["stackexchang",{"_index":182,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["start",{"_index":224,"text":{"Convert.html":{},"Export.html":{},"Misc/Summary-Misc.html":{},"Misc/windows.html":{},"find.html":{},"find.html#what-does-it-do":{},"preview.html":{},"preview.html#what-does-it-do":{},"search.html":{},"search.html#what-does-it-do":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#what-does-it-do":{},"tools/BackLinks.html":{},"tools/New.html":{},"tools/webtitle.html":{}},"title":{}}],["still",{"_index":83,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["strictli",{"_index":198,"text":{"index.html":{}},"title":{"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}}}],["string",{"_index":267,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["structur",{"_index":456,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["stuff",{"_index":98,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{},"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/create.html":{}},"title":{}}],["subtract",{"_index":466,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["such",{"_index":14,"text":{"index.html":{},"index.html#usage":{},"index.html#what-is-cadmus":{}},"title":{}}],["suffer",{"_index":93,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["suffici",{"_index":52,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["suggest",{"_index":184,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["summari",{"_index":410,"text":{"tools/Summary.html":{}},"title":{"Misc/Summary-Misc.html":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}}}],["sure",{"_index":165,"text":{"index.html":{},"index.html#dependencies":{},"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["switch",{"_index":143,"text":{"index.html":{},"index.html#keyboard-bindings":{}},"title":{}}],["symlink",{"_index":448,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["sync",{"_index":416,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["system",{"_index":536,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["t",{"_index":310,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["tab",{"_index":555,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["tag",{"_index":19,"text":{"index.html":{},"index.html#what-is-cadmus":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#integrating-with-vim":{},"tags/create.html#what-does-it-do":{},"tags/create.html#when-would-this-be-used":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#how-does-it-work":{},"tools/New.html#what-does-it-do":{},"tools/New.html#when-would-this-be-used":{}},"title":{"tags/create.html#hash-tags":{},"tags/create.html#yaml-tags":{}}}],["take",{"_index":106,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{},"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{}},"title":{}}],["tecton",{"_index":185,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["term",{"_index":17,"text":{"index.html":{},"index.html#what-is-cadmus":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-does-it-work":{}},"title":{}}],["termin",{"_index":5,"text":{"Misc/windows.html":{},"Misc/windows.html#what-does-it-do":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#background":{},"index.html#cadmus":{},"index.html#usage":{},"preview.html":{},"preview.html#what-does-it-do":{},"search.html":{},"search.html#how-does-it-work":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["texliv",{"_index":186,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["text=alway",{"_index":406,"text":{"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["theme",{"_index":195,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["theme=twodark",{"_index":320,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["thing",{"_index":190,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{},"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["think",{"_index":384,"text":{"preview.html":{},"preview.html#when-would-this-be-used":{}},"title":{}}],["though",{"_index":572,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["through",{"_index":67,"text":{"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"index.html":{},"index.html#usage":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{}},"title":{}}],["tie",{"_index":132,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["time",{"_index":390,"text":{"search.html":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#when-would-this-be-used":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["titl",{"_index":550,"text":{"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{"tools/webtitle.html":{}}}],["tmp",{"_index":449,"text":{"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["tmsu",{"_index":136,"text":{"index.html":{},"index.html#background":{},"index.html#dependencies":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#how-does-it-work":{},"tags/Filter.html#what-does-it-do":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#what-does-it-do":{},"tags/create.html#when-would-this-be-used":{},"tools/New.html":{},"tools/New.html#how-does-it-work":{}},"title":{}}],["todo",{"_index":244,"text":{"Convert.html":{},"Convert.html#example":{},"Export.html":{},"Export.html#example":{},"Misc/windows.html":{},"find.html":{},"find.html#how-does-it-work":{},"preview.html":{},"preview.html#example":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{"Misc/windows.html#todo":{}}}],["togeth",{"_index":133,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["toggl",{"_index":266,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{}},"title":{}}],["took",{"_index":299,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["tool",{"_index":4,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"index.html":{},"index.html#background":{},"index.html#cadmus":{},"index.html#when-or-why-would-i-use-this":{},"tools/BackLinks.html":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/New.html":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["topic",{"_index":453,"text":{"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["transform",{"_index":226,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Convert.html#what-does-it-do":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{}}],["tri",{"_index":103,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{}},"title":{}}],["type",{"_index":260,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"find.html":{},"find.html#how-do-i-use-it":{},"find.html#when-would-this-be-used":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#when-would-this-be-used":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["u",{"_index":527,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["ubuntu",{"_index":156,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["univers",{"_index":569,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["unix",{"_index":100,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["until",{"_index":465,"text":{"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["up",{"_index":250,"text":{"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["up,pgdn:preview",{"_index":333,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["url",{"_index":577,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#what-does-it-do":{}},"title":{}}],["us",{"_index":30,"text":{"Convert.html":{},"Convert.html#how-does-it-work":{},"Convert.html#when-would-this-be-used":{},"Export.html":{},"Export.html#how-does-it-work":{},"Export.html#what-does-it-do":{},"Misc/Summary-Misc.html":{},"Misc/windows.html":{},"Misc/windows.html#how-does-it-work":{},"Misc/windows.html#when-would-this-be-used":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{},"index.html#how-does-it-work":{},"index.html#installation":{},"index.html#usage":{},"preview.html":{},"preview.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{},"tags/create.html#when-would-this-be-used":{},"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{},"tools/New.html":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#how-does-it-work":{},"tools/Summary.html":{},"tools/Summary.html#summary":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"Convert.html#how-do-i-use-it":{},"Convert.html#when-would-this-be-used":{},"Export.html#how-do-i-use-it":{},"Export.html#when-would-this-be-used":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"Misc/Summary-Misc.html#when-would-this-be-used":{},"Misc/windows.html#how-do-i-use-it":{},"Misc/windows.html#when-would-this-be-used":{},"find.html#how-do-i-use-it":{},"find.html#when-would-this-be-used":{},"index.html#how-do-i-use-it":{},"index.html#when-or-why-would-i-use-this":{},"preview.html#how-do-i-use-it":{},"preview.html#when-would-this-be-used":{},"search.html#how-do-i-use-it":{},"search.html#when-would-this-be-used":{},"tags/Filter.html#how-do-i-use-it":{},"tags/Filter.html#when-would-this-be-used":{},"tags/create.html#how-do-i-use-it":{},"tags/create.html#when-would-this-be-used":{},"tools/BackLinks.html#how-do-i-use-it":{},"tools/BackLinks.html#when-would-this-be-used":{},"tools/New.html#how-do-i-use-it":{},"tools/New.html#when-would-this-be-used":{},"tools/webtitle.html#how-do-i-use-it":{},"tools/webtitle.html#when-would-this-be-used":{}}}],["usag",{"_index":64,"text":{"index.html":{}},"title":{"index.html#usage":{}}}],["user",{"_index":131,"text":{"index.html":{},"index.html#background":{}},"title":{}}],["usual",{"_index":491,"text":{"tags/create.html":{},"tags/create.html#how-do-i-use-it":{}},"title":{}}],["v:execut",{"_index":339,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["variou",{"_index":71,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["version",{"_index":235,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{}},"title":{}}],["view",{"_index":374,"text":{"preview.html":{},"preview.html#how-do-i-use-it":{}},"title":{}}],["vim",{"_index":518,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{"tags/create.html#integrating-with-vim":{}}}],["vimrc",{"_index":520,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["virtual",{"_index":535,"text":{"tags/create.html":{},"tags/create.html#dependencies":{}},"title":{}}],["vnote",{"_index":206,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["vscode",{"_index":207,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{},"tags/Filter.html":{},"tags/Filter.html#how-do-i-use-it":{}},"title":{}}],["w",{"_index":274,"text":{"find.html":{},"find.html#how-do-i-use-it":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#how-do-i-use-it":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["w:execut",{"_index":335,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["wa",{"_index":426,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["wa/wr",{"_index":423,"text":{"Misc/windows.html":{}},"title":{}}],["walk",{"_index":66,"text":{"index.html":{},"index.html#usage":{}},"title":{}}],["want",{"_index":80,"text":{"Export.html":{},"Export.html#when-would-this-be-used":{},"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#when-would-this-be-used":{},"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"find.html":{},"find.html#how-do-i-use-it":{},"index.html":{},"index.html#usage":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/create.html":{},"tags/create.html#how-do-i-use-it":{},"tools/New.html":{},"tools/New.html#when-would-this-be-used":{}},"title":{}}],["warn",{"_index":58,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"index.html":{},"index.html#installation":{},"preview.html":{},"preview.html#how-do-i-use-it":{},"search.html":{},"search.html#how-do-i-use-it":{},"tags/create.html":{}},"title":{}}],["weasyprint",{"_index":197,"text":{"index.html":{},"index.html#recommended-for-all-features":{}},"title":{}}],["web",{"_index":581,"text":{},"title":{"tools/webtitle.html":{}}}],["websit",{"_index":578,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["webtitl",{"_index":582,"text":{"tools/webtitle.html":{},"tools/webtitle.html#how-do-i-use-it":{}},"title":{}}],["well",{"_index":43,"text":{"Convert.html":{},"Convert.html#how-do-i-use-it":{},"Export.html":{},"Export.html#how-do-i-use-it":{},"index.html":{},"index.html#installation":{},"index.html#when-or-why-would-i-use-this":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tags/create.html#what-does-it-do":{}},"title":{}}],["wget",{"_index":47,"text":{"index.html":{},"index.html#installation":{}},"title":{}}],["whatev",{"_index":417,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#how-do-i-use-it":{},"tags/Filter.html":{},"tags/Filter.html#how-does-it-work":{}},"title":{}}],["width",{"_index":318,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{}}],["wiki",{"_index":539,"text":{"tools/BackLinks.html":{},"tools/BackLinks.html#what-does-it-do":{}},"title":{}}],["wikipedia",{"_index":239,"text":{"Convert.html":{},"Convert.html#when-would-this-be-used":{}},"title":{}}],["window",{"_index":415,"text":{"Misc/Summary-Misc.html":{},"Misc/Summary-Misc.html#what-does-it-do":{},"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"Misc/windows.html#how-does-it-work":{},"Misc/windows.html#what-does-it-do":{},"Misc/windows.html#when-would-this-be-used":{}},"title":{"Misc/windows.html":{}}}],["without",{"_index":284,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{}},"title":{}}],["wl",{"_index":174,"text":{"index.html":{},"index.html#dependencies":{}},"title":{}}],["wmctrl",{"_index":425,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{},"Misc/windows.html#how-does-it-work":{}},"title":{}}],["won't",{"_index":496,"text":{"tags/create.html":{},"tags/create.html#when-would-this-be-used":{}},"title":{}}],["work",{"_index":25,"text":{"Convert.html":{},"Export.html":{},"Misc/windows.html":{},"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#recommended-for-all-features":{},"index.html#usage":{},"preview.html":{},"search.html":{},"search.html#how-does-it-work":{},"tags/Filter.html":{},"tags/create.html":{},"tags/create.html#dependencies":{},"tools/BackLinks.html":{},"tools/New.html":{},"tools/webtitle.html":{},"tools/webtitle.html#how-does-it-work":{}},"title":{"Convert.html#how-does-it-work":{},"Export.html#how-does-it-work":{},"Misc/windows.html#how-does-it-work":{},"find.html#how-does-it-work":{},"index.html#how-does-it-work":{},"preview.html#how-does-it-work":{},"search.html#how-does-it-work":{},"tags/Filter.html#how-does-it-work":{},"tags/create.html#how-does-it-work":{},"tools/BackLinks.html#how-does-it-work":{},"tools/New.html#how-does-it-work":{},"tools/webtitle.html#how-does-it-work":{}}}],["wr",{"_index":428,"text":{"Misc/windows.html":{},"Misc/windows.html#how-do-i-use-it":{}},"title":{}}],["write",{"_index":567,"text":{"tools/Summary.html":{},"tools/Summary.html#summary":{}},"title":{}}],["wrote",{"_index":86,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["x",{"_index":119,"text":{"index.html":{},"index.html#when-or-why-would-i-use-this":{}},"title":{}}],["xarg",{"_index":337,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["xclip",{"_index":173,"text":{"find.html":{},"find.html#how-does-it-work":{},"index.html":{},"index.html#dependencies":{}},"title":{}}],["xdg",{"_index":355,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["xorg",{"_index":358,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}],["y",{"_index":286,"text":{"find.html":{},"find.html#keyboard-shortcuts":{},"search.html":{},"search.html#keyboard-shortcuts":{},"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["y:execut",{"_index":345,"text":{"find.html":{},"find.html#how-does-it-work":{}},"title":{}}],["yakuak",{"_index":201,"text":{"index.html":{},"index.html#interesting-helpful-recommended-generally-not-strictly-necessary":{}},"title":{}}],["yaml",{"_index":482,"text":{"tags/create.html":{},"tags/create.html#what-does-it-do":{}},"title":{"tags/create.html#yaml-tags":{}}}],["you'r",{"_index":180,"text":{"Misc/windows.html":{},"Misc/windows.html#when-would-this-be-used":{},"find.html":{},"find.html#when-would-this-be-used":{},"index.html":{},"index.html#recommended-for-all-features":{},"search.html":{},"search.html#when-would-this-be-used":{},"tags/Filter.html":{},"tags/Filter.html#when-would-this-be-used":{},"tools/BackLinks.html":{},"tools/BackLinks.html#when-would-this-be-used":{}},"title":{}}],["z",{"_index":529,"text":{"tags/create.html":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["z]+(?=\\",{"_index":502,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{}},"title":{}}],["za",{"_index":501,"text":{"tags/create.html":{},"tags/create.html#hash-tags":{},"tags/create.html#integrating-with-vim":{}},"title":{}}],["zsh",{"_index":216,"text":{"index.html":{},"index.html#path":{}},"title":{}}],["zulip",{"_index":360,"text":{"find.html":{},"find.html#how-does-it-work":{},"search.html":{},"search.html#how-does-it-work":{}},"title":{}}]],"pipeline":["stemmer"],"version":"2.3.8"}} \ No newline at end of file diff --git a/sitemap.xml.gz b/sitemap.xml.gz index eb3e25d..ef1f11d 100644 Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ