1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 19:10:08 +00:00
powerlevel10k/internal/notes.txt

29 lines
2.1 KiB
Plaintext
Raw Normal View History

2020-02-28 10:48:42 +00:00
- battery: use the same technique as in vpn_ip to avoid reset=2.
2020-01-21 11:35:24 +00:00
- implement fake gitstatus api on top of vcs_info (or plain git?) + worker and use it if there is no
gitstatus.
2020-02-28 10:48:42 +00:00
- call vcs_info on worker. the tricky question is what to display while "loading".
2020-02-07 11:18:38 +00:00
- add _SHOW_SYSTEM to all *env segments.
2020-02-11 10:56:16 +00:00
- support states in SHOW_ON_COMMAND: POWERLEVEL9K_SEGMENT_STATE_SHOW_ON_COMMAND='...'
2020-02-12 15:59:57 +00:00
- add POWERLEVEL9K_${SEGMENT}_${STATE}_SHOW_IN_DIR='pwd_pattern'; implement the same way as
2020-02-28 10:48:42 +00:00
SHOW_ON_UPGLOB. how should it interact with POWERLEVEL9K_${SEGMENT}_DISABLED_DIR_PATTERN?
2020-02-12 15:27:58 +00:00
- add `p10k upglob`; returns 0 on match and sets REPLY to the directory where match was found.
2020-02-11 12:30:02 +00:00
- when directory cannot be shortened any further, start chopping off segments from the left and
replacing the chopped off part with `…`. e.g., `…/x/anchor/y/anchor`. the shortest dir
representation is thus `…/last` or `…/last` depending on whether the last segment is an anchor.
the replacement parameter's value is `…/` (with a slash) to allow for `x/anchor/y/anchor`.
2020-02-14 17:47:35 +00:00
- add to faq: how do i display an environment variable in prompt? link it from "extensible"
- add to faq: how do i display an icon in prompt? link it from "extensible"
2020-02-15 14:09:18 +00:00
- add root_indicator to config templates
- test chruby and add it to config templates
- add ssh to config templates
- add swift version to config templates; see if there is a good pattern for PROJECT_ONLY
- add swiftenv
2020-02-24 11:26:00 +00:00
- add faq: how to customize directory shortening? mention POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER,
POWERLEVEL9K_DIR_MAX_LENGTH and co., and truncate_to_last.
2020-02-16 14:56:17 +00:00
- fix a bug in zsh: https://github.com/romkatv/powerlevel10k/issues/502. to reproduce:
emulate zsh -o prompt_percent -c 'print -P "%F{#ff0000}red%F{green}%B bold green"'
2020-02-16 16:53:51 +00:00
- bug: open a new tab and hit ctrl-p. an empty line will appear before prompt.
2020-02-25 07:58:11 +00:00
- take a look at https://github.com/skywind3000/z.lua. it claims to have fzf support. would be nice
if alt-down showed two groups -- one for subdirs and another for directory history (sorted by
frequency of use? by last use? three sections? more key bindings?).