git-radar icon indicating copy to clipboard operation
git-radar copied to clipboard

Fish support

Open skrat opened this issue 10 years ago • 15 comments

...would be nice

skrat avatar Aug 26 '15 11:08 skrat

+1

Rameshv avatar Aug 26 '15 12:08 Rameshv

You can use --bash option to build your prompt with fish

function fish_prompt --description 'Write out the prompt'
  printf  '[%s] %s%s%s%s\f\r> ' (date "+%H:%M:%S") (set_color -o blue) (pwd)  (set_color normal) (git-radar --bash --fetch)
end

[09:28:21] /some/repo git:(upstream ⚡ master) 1A 1D 13A

It would be nice at least a mention about this in the readme. I'm happy to make a PR.

kernelp4nic avatar Aug 26 '15 12:08 kernelp4nic

Thats quick @kernelp4nic :) But its not working.. i have lot of unstaged changes, it just displayes >, nothing else

Rameshv avatar Aug 26 '15 12:08 Rameshv

@Rameshv sorry I don't use fish so I haven't it yet. I'll look in to this. Can you send me an example fishrc so I know where to start?

michaeldfallen avatar Aug 26 '15 13:08 michaeldfallen

Sure @michaeldfallen. fish config usually stored in ~/.config/fish/config.fish, it kinda look like this

# Path to your oh-my-fish.
set fish_path $HOME/.oh-my-fish

# Theme
#set fish_theme robbyrussell

# Load oh-my-fish configuration.
. $fish_path/oh-my-fish.fish

set fish_plugins git  autojump bundler rvm rails rake node python emoji-clock

#set path vars

set PATH $PATH ~/softwares/mongodb-osx-x86_64-2.4.9/bin

set PATH $PATH ~/softwares/redis-2.8.7/src 

set PATH $PATH ~/softwares/android-sdk-macosx/tools

#set aliases for frequently used commands
alias gitlog='git log --all --graph --pretty=format:"%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit --date=relative'
alias gits='git status -sb'

and fish_prompt is a method responsible for displaying the prompt as specified by @kernelp4nic

Rameshv avatar Aug 26 '15 13:08 Rameshv

would be nice to have git-radar in one of the tackle themes https://github.com/justinmayer/tackle instead of vcprompt

oppianmatt avatar Aug 26 '15 15:08 oppianmatt

+1

alex-kovshovik avatar Aug 26 '15 19:08 alex-kovshovik

+1

tooolbox avatar Aug 26 '15 20:08 tooolbox

https://github.com/michaeldfallen/git-radar/commit/74080c75a3c2b7c83945f326143ff219ec2302c9 https://github.com/michaeldfallen/git-radar/commit/4fa1744141e2027043e4a0ca310a94a30a20a1fb

n10v avatar Aug 28 '15 12:08 n10v

@bogem Nice!

My alternate version that matches the existing prompt that I had:

function fish_prompt
    echo -n (whoami)@(hostname|cut -d . -f 1)
    echo -n " "
    set_color $fish_color_cwd
    echo -n (prompt_pwd)
    git-radar --fish -fetch
    set_color normal
    echo -n '> '
end

I guess the Brew formula just needs to be updated now, as there's no --fish flag in 0.2. :)

tooolbox avatar Aug 28 '15 20:08 tooolbox

@tooolbox thanks :) I like minimal prompts Yes. Brew formula needs to be updated

n10v avatar Aug 29 '15 05:08 n10v

Something looks strange for me. Any ideas why?

git-radar

jschneider avatar Aug 29 '15 15:08 jschneider

sorry that I haven't published the new version, looking to automate that as soon as possible. I want to get the configurable prefixes mentioned in #17 and #15 before releasing. Tonight I hope.

michaeldfallen avatar Aug 29 '15 15:08 michaeldfallen

I cloned your repository. I am currently using da76c7d Isn't this the latest version?

jschneider avatar Aug 29 '15 15:08 jschneider

Awesome project. When you publish the new version, perhaps consider adding oh-my-fish theme.

Put up an example omf theme based on git-radar here: https://github.com/kenglxn/git-radar-omf-theme

kenglxn avatar Aug 30 '15 23:08 kenglxn