-
Notifications
You must be signed in to change notification settings - Fork 4
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
Having issues setting up this plugin #17
Comments
The leader still doesn't work but I was able to change the coc.nvim setup to
|
Please let me know your vim version and vimf90 branch. |
Hello, vim version: Just incase you need it, I compiled it with homebrew using the following options: I installed Vimf90 using vim-plug, which as I understand it, pulls from the default branch of the origin. |
|
let g:mapleader = "," works well changing let g:VimF90Leader = "`" to g:VimF90Leader = "`" results in Pattern not found: VimF90Leader = "`" Also, sometimes something like `wr will work but other times not. And I absolutely can't figure out why. Is there a timing issue or...? |
The behavior doesn't seem to be normal. If I type some of the ` snippets seem to work, but I would have expected them to work as leaders...? |
Oh... Now I have understood, i guess. Give me some time...I will marge the devel branch |
ok thanks |
Hello,
I seem to be having issues setting up this plugin. I'm new to VIM, so forgive me.
A few notes:
First issue is, can't seem to set up the leader. The help file in VIM (:help vimf90) shows the command
let g:VimF90Leader = "
"`but readme shows
let fortran_leader = "your chosen key"
Any comments?
The next I suppose is having issues with setting up coc.nvim. I'm using the following code from the readme.md:
let g:coc_start_at_startup = 0
augroup coc
autocmd!
autocmd VimEnter * :silent CocStart
augroup end
let g:coc_user_config = {
\ 'languageserver': {
\ 'fortran': {
\ 'command': '${HOME}/.local/bin/fortls',
\ 'args': ['--lowercase_intrinsics'],
\ 'filetypes': ['fortran'],
\ 'rootPatterns': ['.fortls', '.git/'],
\ }
}
but I get the following error when I try to :source %
Error detected while processing /Users/user/.vimrc:
line 42:
E722: Missing comma in Dictionary:
line 50:
E1128: } without {: }
Press ENTER or type command to continue
Can you assist?
The text was updated successfully, but these errors were encountered: