git_write_keyword.fish 531 B

12345678910111213141516
  1. function git_write_keyword --description 'Write git in terminal prompt'
  2. set -l cmd (commandline -po)
  3. set -l cursor (commandline -C)
  4. if test "$cmd[1]" != git
  5. commandline -C 0
  6. commandline -i "git "
  7. commandline -C (math $cursor + 4)
  8. else if test "$cmd[2]" != commit
  9. commandline -C 4
  10. commandline -i "commit"
  11. commandline -C (math $cursor + 10)
  12. else
  13. commandline -r (string sub --start=11 (commandline -p))
  14. commandline -C -- (math $cursor - 10)
  15. end
  16. end