9d2'/>
summaryrefslogtreecommitdiff
path: root/.vim/after (unfollow)
either; things like the last seach pattern or the contents of registers, i.e. global state of the editor, are recorded. There's no sensible approach I can see except to actually switch the feature off entirely by blanking it. I've therefore completely rewritten this, to make as thorough a check as possible that the Vim user is editing a pass(1) file by calling `pass edit`, and then to disable the "leaky" options globally, with an explicit warning so that the user can see it's been done. This plugin is also available as Vim script #5707: <https://www.vim.org/scripts/script.php?script_id=5707> Its homepage is here: <https://sanctum.geek.nz/cgit/vim-redact-pass.git/about/>
Commit message (Collapse)AuthorFilesLines
2012-04-10gui -> gui_runningRené Neumann1-1/+1
2012-04-10Disable cursorline in non-GUI for VIMRené Neumann1-0/+2
2012-04-10fixes for zsh < 4.3.9René Neumann2-6/+11
2012-04-10Move Latex stuff into general vim-configRené Neumann1-0/+6
2012-03-06More isabelle emacs stuff, especially shortcutsRené Neumann1-1/+38
2012-02-23vim-latex additionsRené 'Necoro' Neumann2-0/+5
2012-02-23Cleanup using TRAPEXITRené Neumann1-3/+6
2012-02-23Remove useless aliasesRené Neumann1-4/+0
2012-02-23-mRené Neumann1-14/+17
2012-02-23Unify cci outputRené Neumann1-10/+15
2012-02-23Make the stg-version into a variable ... no need to run python multiple timesRené Neumann1-6/+5
2012-02-23Port cci to new stgit versionRené Neumann2-4/+19
2012-02-23Do not use the find-theorems-form in PGRené Neumann1-1/+1
2012-01-30ebuild_error_on_trailing_whitespace is deprecatedRené 'Necoro' Neumann1-1/+0
2012-01-10Add 'block' command to mako syntaxRené 'Necoro' Neumann1-2/+2
2012-01-10Changes needed for haddock browser.René 'Necoro' Neumann1-1/+2
2011-12-09Update haskellmodeRené Neumann1-2/+1
2011-12-09Update haskellmodeRené Neumann5-82/+228
2011-11-21Set Poly/ML as the default SML interpreter.René Neumann1-0/+3
2011-11-21Added support for jedit.René Neumann2-4/+11
2011-11-16Make 'hg k' work similar to 'git k'René 'Necoro' Neumann1-0/+3
2011-10-14'tabgroup' -> 'tabgroups'René 'Necoro' Neumann1-1/+1
2011-10-14Switch from openoffice alias to libreoffice (ooffice -> soffice)René 'Necoro' Neumann1-2/+2
2011-10-14Make the quotes in ProofGeneral to be nearly invisibleRené Neumann1-1/+1
2011-08-23Disable hightlighting of the domain in the FF urlbarRené Neumann1-0/+3
2011-08-12Enhance IE scriptRené Neumann1-6/+7
2011-08-11BlaRené 'Necoro' Neumann1-0/+2
2011-08-11Local fontsRené 'Necoro' Neumann1-13/+22
2011-08-11Better inconsolata thingsRené Neumann4-4/+13
2011-08-10Moved some functions to their own filesRené Neumann3-124/+120
2011-08-10More advanced IE scriptRené Neumann2-1/+74
2011-08-10Inconsolata also in emacsRené Neumann1-1/+1
2011-08-10Better vim fontsRené 'Necoro' Neumann1-1/+1
2011-08-09ooffice aliasRené Neumann1-0/+2
2011-08-09Update the needed hg-extensions.René Neumann1-1/+2
2011-06-08gtkrc stuff for Qt-Gtk-StyleRené 'Necoro' Neumann2-0/+8
2011-06-08Updated fonts.conf to work better on lcdsRené 'Necoro' Neumann1-17/+6
2018-05-24grep: allow grep options and argumentsSitaram Chamarty1-3/+3
Allow grep options and arguments. Typical uses may be, for instance, wanting to ignore case ('-i'), print a few lines of context around the matched line, multiple patterns with '-e', etc. (background: grep is deprecating GREP_OPTIONS, so eventually that will stop working).
2018-02-19fish: reduce completion runtimesMathis Antony1-14/+13
Fish completion spends most of the time in calls to `sed` in for loops over entries and directories. This patch removes the repeated calls to `sed`. Signed-off-by: Mathis Antony <sveitser@gmail.com>
2018-02-08generate: disallow zero length generated passwordsJason A. Donenfeld1-1/+2
2018-02-01generate: in-place should work when file is emptyJason A. Donenfeld1-1/+1
2017-12-18Quote array specifierJason A. Donenfeld1-1/+1
Otherwise this expands to a filename if one exists. Suggested-by: izaberina@gmail.com
2017-10-13protect dirname calls from pass-names that look like command-line optionsStacey Sheldon1-6/+6
With the $path variable being passed directly to dirname, any pass-names provided by the user that happened to look like options to dirname would be processed as options rather than as the path to be split. This results in a real mess when you happen to run one of: pass edit --help pass generate --help pass insert --help then in the cmd_foo() function, you have: mkdir -p -v "$PREFIX/$(dirname --help)" which (due to the -p option to mkdir) results in the creation of an entire directory hierarchy made up of the slash-separated help text from dirname.
2017-09-15passmenu: Don't eat whitespace at beginning/end of passwordDaniel Lublin1-1/+1
If IFS (Input Field Separator) is not emptied, read will actually strip spaces and tabs at the beginning/end end of the "line".
2017-08-29emacs: Release version 1.0.1 of Emacs packageSvend Sorensen2-5/+10
2017-08-29emacs: --run-async: Quote shell argumentsDamien Cassou1-4/+5
This is important for filenames with special characters such as spaces and parenthesis.
2017-08-29emacs: Update author's email addressSvend Sorensen1-2/+2
2017-08-29emacs: Fix package-lint violationsSvend Sorensen1-2/+3
2017-07-26emacs: Release version 1.0.0 of Emacs packageSvend Sorensen2-1/+8
2017-07-26emacs: Use with-editor to wrap "pass edit"Svend Sorensen2-9/+17
Instead of editing the password file directly using Emacs, "pass edit" is run. This allows password-store's git change tracking to work. This adds a dependency on the with-editor Emacs package.
2017-04-13Bump version1.7.1Jason A. Donenfeld1-1/+1
2017-04-13init: match only the public keyJason A. Donenfeld1-1/+1
2017-03-28Use $GPG variableJason A. Donenfeld1-3/+3
2017-03-20Fix compatibility with GnuPG 2.2.19Andreas Stieger2-2/+2
GnuPG 2.2.19 added a warning when no command was given. * src/password-store.sh (reencrypt_path): Add --decrypt to --list-only * tests/t0300-reencryption.sh (gpg_keys_from_encrypted_file): same https://bugs.gnupg.org/gnupg/msg9873 http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=commit;h=810adfd47801fc01e45fb71af9f05c91f7890cdb https://bugzilla.suse.com/show_bug.cgi?id=1028867
2017-03-01tests: fix on OSX by not using the tr hackJason A. Donenfeld3-5/+2
2017-02-26Bump version1.7Jason A. Donenfeld1-1/+1
2017-02-26Modernize makefileJason A. Donenfeld2-31/+36
2017-02-25CopyrightJason A. Donenfeld1-1/+1
2017-02-25StyleJason A. Donenfeld1-2/+2
2017-02-25git: use inner-most directoryJason A. Donenfeld2-27/+48
2017-02-25clip: sleep may require argv[0] to be sleepJason A. Donenfeld1-1/+1
2017-02-25man: document system extensionsJason A. Donenfeld1-2/+3