Skip to content

Commit d90bcf8

Browse files
feat(markdown): update suggested bindkeys and TODO.md
1 parent f55bc46 commit d90bcf8

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Diff for: README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,9 @@ You can add the following properties to your .zshrc file:
117117
Include the code below in your .zshrc file
118118

119119
```bash
120-
git-fzf-checkout-bindkey() { echo; git-fzf checkout; zle reset-prompt; }
121-
zle -N git-fzf-checkout-bindkey
122-
bindkey '^o' git-fzf-checkout-bindkey
123-
124-
git-fzf-log-bindkey() { git-fzf log; }
125-
zle -N git-fzf-log-bindkey
126-
bindkey '^l' git-fzf-log-bindkey
120+
bindkey -s ^o "git-fzf checkout\n"
121+
bindkey -s ^l "git-fzf log\n"
122+
bindkey -s ^d "git-fzf diff\n"
127123
```
128124

129125
## Worktree on Change Feature
@@ -160,6 +156,7 @@ zsh_git_fzf_on_worktree_change() {
160156
- Writing tests
161157
- Sharing this project and recommending it to your friends
162158
- Giving a star on this repository
159+
- [TODO](https://github.com/alexiszamanidis/zsh-git-fzf/blob/master/TODO.md)
163160

164161
## License
165162

Diff for: TODO.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
- Every time a ZSH shell runs, we need to run a 'git fetch' to check if the user needs to 'git pull' our new features/bug fixes etc
22
- Issue with the installation of the dependencies(e.g. node_modules). Should I include 'npm/yarn install' in the installation script? Is there a way to copy fast the node_modules(e.g. file links? - if I change a dependency with a hard link all the dependencies will be changed)?
3+
- Add tests
4+
- Add more DEMO Gifs

0 commit comments

Comments
 (0)