Skip to content

Commit

Permalink
raven42 comment
Browse files Browse the repository at this point in the history
  • Loading branch information
fdobad committed Aug 15, 2023
1 parent d33682b commit 2a27e35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ If the ctags executable is not installed in one of the directories in your
`$PATH` environment variable you have to set the `g:tagbar_ctags_bin`
variable, see the documentation for more info.

Windows users should add `let g:tagbar_python = 0` to their vimrc.

## Quickstart

Put something like the following into your ~/.vimrc:
Expand Down
2 changes: 1 addition & 1 deletion autoload/tagbar.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3163,7 +3163,7 @@ function! s:ExecuteCtags(ctags_cmd) abort
call tagbar#debug#log('Exit code: ' . v:shell_error)
redraw!
else
let py_version = get(g:, 'tagbar_python', 0)
let py_version = get(g:, 'tagbar_python', 1)
silent let ctags_output = s:run_system(a:ctags_cmd, py_version)
endif

Expand Down

0 comments on commit 2a27e35

Please sign in to comment.