Skip to content

Commit

Permalink
DROP test linting
Browse files Browse the repository at this point in the history
  • Loading branch information
zhimsel committed Jul 7, 2023
1 parent ee39f5f commit 9a23dc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ If you have wished Vim would be smarter about keeping your editing state, *vim-s

## Installation

1. The old way: download and source the vimball from the [releases page][releases], then run `:helptags {dir}` on your runtimepath/doc directory. Updating the plug-in via `:GetLatestVimScripts` is supported. Or,
1. The old way: download and source the vimball from the [releases page]releases], then run `:helptags {dir}` on your runtimepath/doc directory. Updating the plug-in via `:GetLatestVimScripts` is supported. Or,
1. The plug-in manager way: using a git-based plug-in manager (Pathogen, Vundle, NeoBundle, Vim-Plug etc.), simply add `zhimsel/vim-stay` to the list of plug-ins, source that and issue your manager's install command. Or,
1. The Vim package way (requires Vim 7.4 with patch 1384): create a `pack/vim-stay/start/` directory in your `'packagepath'` and clone this repository into it. Run `:helptags {dir}` on the `doc` directory of the created repo. Run `:runtime plugin/stay.vim` to load *vim-stay* (or restart Vim).

Expand Down
2 changes: 1 addition & 1 deletion autoload/stay.vim
Expand Up @@ -26,7 +26,7 @@ function! stay#ispersistent(bufnr, volatile_ftypes) abort
\ getbufvar(a:bufnr, 'stay_ignore') isnot 1 &&
\ getbufvar(a:bufnr, '&buflisted') is 1 &&
\ index(['', 'acwrite'], getbufvar(a:bufnr, '&buftype')) isnot -1 &&
\ index(['', 'hide'], getbufvar(a:bufnr, '&bufhidden')) isnot -1 &&
\ index(['', hide'], getbufvar(a:bufnr, '&bufhidden')) isnot -1 &&

Check failure on line 29 in autoload/stay.vim

View workflow job for this annotation

GitHub Actions / vimlint

[vimlint] autoload/stay.vim#L29

EVP_0: unexpected token: '
Raw output
autoload/stay.vim:29:20:Error: EVP_0: unexpected token: '
\ filereadable(l:bufpath) &&
\ stay#isftype(a:bufnr, a:volatile_ftypes) isnot 1 &&
\ stay#istemp(l:bufpath) isnot 1
Expand Down

0 comments on commit 9a23dc4

Please sign in to comment.