prompt.elv 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. use str
  2. use re
  3. fn nix-shell-prompt-string {
  4. put '['
  5. styled nix yellow
  6. if (has-env NIX_SHELL_NAME) {
  7. put ':'
  8. styled $E:NIX_SHELL_NAME green
  9. }
  10. put ']'
  11. }
  12. fn k8s-prompt-string {
  13. var k8s-config = (kubectl config view -o json | from-json)
  14. var k8s-context = $k8s-config[current-context]
  15. var k8s-namespace = (each { |ctx| if (eq $ctx[name] $k8s-context) { put $ctx[context][namespace] } } $k8s-config[contexts])
  16. put '['
  17. styled $k8s-context magenta
  18. put '|'
  19. styled $k8s-namespace blue
  20. put ']'
  21. }
  22. fn aws-prompt-string {
  23. put '['
  24. styled $E:AWS_PROFILE yellow
  25. put ']'
  26. }
  27. fn parse-git-branch {
  28. try {
  29. git symbolic-ref -q HEAD 2> /dev/null
  30. } catch e {
  31. try {
  32. git rev-parse --short HEAD 2> /dev/null
  33. } catch e {
  34. echo ""
  35. }
  36. }
  37. }
  38. fn parse-git-state {
  39. var git-revision = ''
  40. var git-branch = ''
  41. var git-changed = (num 0)
  42. var git-staged = (num 0)
  43. var git-conflicts = (num 0)
  44. var git-untracked = (num 0)
  45. var git-ahead = (num 0)
  46. var git-behind = (num 0)
  47. git status --porcelain=v2 -b 2>/dev/null | each {|line|
  48. if (eq '#' $line[0]) {
  49. try {
  50. var match = (re:find '# branch.ab \+(\d+) -(\d+)' $line)
  51. set git-ahead = (num $match[groups][1][text])
  52. set git-behind = (num $match[groups][2][text])
  53. } catch e {
  54. # noop
  55. }
  56. if (str:has-prefix $line '# branch.head') {
  57. set git-branch = $line[14..]
  58. }
  59. if (str:has-prefix $line '# branch.oid') {
  60. set git-revision = $line[13..20]
  61. }
  62. } elif (eq u $line[0]) {
  63. set git-conflicts = (+ $git-conflicts 1)
  64. } elif (eq '?' $line[0]) {
  65. set git-untracked = (+ $git-untracked 1)
  66. } else {
  67. if (not-eq '.' $line[2]) {
  68. set git-staged = (+ $git-staged 1)
  69. }
  70. if (not-eq '.' $line[3]) {
  71. set git-changed = (+ $git-changed 1)
  72. }
  73. }
  74. }
  75. var git-ref = $git-branch
  76. var git-ref-prefix = ''
  77. if (eq $git-branch '(detached)') {
  78. try {
  79. var tag @rest = (git tag --points-at HEAD)
  80. set git-ref-prefix = '#'
  81. set git-ref = $tag
  82. } catch e {
  83. set git-ref-prefix = '@'
  84. set git-ref = $git-revision
  85. }
  86. }
  87. put '('
  88. put $git-ref-prefix
  89. styled $git-ref magenta bold
  90. if (> $git-ahead 0) {
  91. put '^'$git-ahead
  92. }
  93. if (> $git-behind 0) {
  94. put 'v'$git-behind
  95. }
  96. put '|'
  97. if (> $git-staged 0) {
  98. styled +$git-staged green
  99. }
  100. if (> $git-conflicts 0) {
  101. styled x$git-conflicts red
  102. }
  103. if (> $git-changed 0) {
  104. styled '*'$git-changed red
  105. }
  106. if (> $git-untracked 0) {
  107. put '..'
  108. }
  109. if (== 0 $git-changed $git-staged $git-conflicts $git-untracked) {
  110. styled ok green bold
  111. }
  112. put ')'
  113. }
  114. fn git-prompt-string {
  115. try {
  116. parse-git-state
  117. } catch e {
  118. }
  119. }
  120. set edit:prompt = {
  121. put "\n"
  122. styled '['(date +%H:%M)']' bold bright-cyan
  123. put ' '
  124. styled (tilde-abbr $pwd) yellow
  125. put ' '
  126. git-prompt-string
  127. put "\n% "
  128. }
  129. set edit:rprompt = {
  130. put '['
  131. styled elv green
  132. put ']'
  133. if (has-env IN_NIX_SHELL) {
  134. nix-shell-prompt-string
  135. }
  136. if (has-env IN_K8S) {
  137. k8s-prompt-string
  138. }
  139. if (has-env AWS_PROFILE) {
  140. aws-prompt-string
  141. }
  142. }
  143. # when stale replace clock with --:--
  144. set edit:prompt-stale-transform = {|x|
  145. put $x[0] # newline
  146. styled '[--:--]' bright-cyan
  147. put $x[2..]
  148. }