Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update URLs in ftplugin/raku.vim #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions ftplugin/raku.vim
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
" Vim filetype plugin file
" Language: Raku
" Maintainer: vim-perl <[email protected]>
" Homepage: https://github.com/vim-perl/vim-perl6
" Bugs/requests: https://github.com/vim-perl/vim-perl6/issues
" Maintainer: Raku community <[email protected]>
" Homepage: https://github.com/Raku/vim-raku
" Bugs/requests: https://github.com/RAku/vim-raku/issues
" Last Change: {{LAST_CHANGE}}
" Contributors: Hinrik Örn Sigurðsson <[email protected]>
"
" Based on ftplugin/perl.vim by Dan Sharp <dwsharp at hotmail dot com>
" Forked from github.com/vim-perl/vim-perl

if exists("b:did_ftplugin") | finish | endif
let b:did_ftplugin = 1
Expand All @@ -30,10 +29,10 @@ setlocal includeexpr=substitute(v:fname,'::','/','g')
setlocal suffixesadd=.pm6,.pm,.raku,.rakutest,.t6
setlocal define=[^A-Za-z_]

" The following line changes a global variable but is necessary to make
" gf and similar commands work. Thanks to Andrew Pimlott for pointing out
" the problem. If this causes a " problem for you, add an
" after/ftplugin/raku.vim file that contains
" The following line changes a global variable but is necessary to make gf
" and similar commands work. Thanks to Andrew Pimlott for pointing out the
" problem. If this causes a problem for you, add an after/ftplugin/raku.vim
" file that contains
" set isfname-=:
set isfname+=:
setlocal iskeyword=@,48-57,_,192-255,-
Expand Down