오류

2014-09-16 5 views
0

내 물고기의 conf (의 .config/생선/config.fish) 오류오류

set -e fish_key_bindings 
set -U fish_key_bindings fish_vi_key_bindings 
set fish_path $HOME/.oh-my-fish 
set fish_theme budspencer 
. $fish_path/oh-my-fish.fish 

결과 : https://gist.github.com/LuizCarvalho/925de989c306828a410a

내가 테마를 제거하고 세트가 발생할 경우 에 : 나는 물고기, 오 - 내 - 물고기와 모든 파일의 conf을 제거하고 다시 설치하는 경우, 오류가 발생 계속

[email protected]:~$ fish 
    Welcome to fish, the friendly interactive shell 
    Type help for instructions on how to use fish 
    fish: Unknown command “fish_vi_key_bindings” 
    Standard input: begin; fish_vi_key_bindings ;end 
         ^
    in . (source) call of file “-”, 
    called on standard input, 

    in function “__fish_reload_key_bindings”, 
    called on line 209 of file “/usr/share/fish/functions/__fish_config_interactive.fish”, 

    in function “__fish_config_interactive”, 
    called on line 108 of file “/usr/share/fish/config.fish”, 

    in function “__fish_on_interactive”, 
    called on standard input, 

    in event handler: handler for generic event “fish_prompt” 

...,어떻게 해결할 수 있습니까?

답변

3

vi 바인딩은 곧 출시 될 예정이지만 아직 공개되지는 않았습니다. 그래서 당신은 오류가 발생합니다.

vi 바인딩을 작동시키고 가장자리에 살고 싶다면 트렁크에서 최신 물고기를 설치할 수 있습니다. 자작농을 사용하는 경우 brew install fish --HEAD을 실행하십시오. 또는 구식 방식으로 수행하려는 경우 build instructions here이 있습니다.

또는 가장 최근의 공개 버전을 계속 사용하는 것을 선호하는 경우 config.fish에서 fish_vi_key_bindings 행을 삭제해야합니다.

+0

고마워요! git : //github.com/fish-shell/fish-shell.git : D 컴파일 저장소와 함께 잘 작동합니다. –