Skip to content

Commit

Permalink
firenvim.vim: fix vint failure
Browse files Browse the repository at this point in the history
  • Loading branch information
glacambre committed Jun 21, 2023
1 parent 9a39ceb commit 3c4babf
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions autoload/firenvim.vim
Original file line number Diff line number Diff line change
Expand Up @@ -472,13 +472,6 @@ function! s:get_chrome_dev_manifest_dir_path() abort
return s:build_path([$HOME, '.config', 'google-chrome-unstable', 'NativeMessagingHosts'])
endfunction

function! s:get_arc_manifest_dir_path() abort
if has('mac')
return s:get_chrome_manifest_dir_path()
end
return throw 'No Arc on any other than mac.'
endfunction

function! s:get_brave_manifest_dir_path() abort
if has('mac')
return s:get_chrome_manifest_dir_path()
Expand Down Expand Up @@ -712,7 +705,7 @@ function! s:get_browser_configuration() abort
\'arc': {
\ 'has_config': s:arc_config_exists(),
\ 'manifest_content': function('s:get_chrome_manifest'),
\ 'manifest_dir_path': function('s:get_arc_manifest_dir_path'),
\ 'manifest_dir_path': function('s:get_chrome_manifest_dir_path'),
\ 'registry_key': 'HKCU:\Software\Google\Chrome\NativeMessagingHosts\firenvim',
\},
\'brave': {
Expand Down

0 comments on commit 3c4babf

Please sign in to comment.