diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-10-26 11:23:05 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-10-26 14:28:11 +0530 |
| commit | ca6a853f3ab4994db3d45ba0677bdae1a1769ff6 (patch) | |
| tree | 9fdb9ceca187db7dd3bfeeed6c818adcf1add5b3 /README.md | |
| parent | ac003a6e8c936169fcf2d9b3535fdb5a8d155411 (diff) | |
| download | daffm-ca6a853f3ab4994db3d45ba0677bdae1a1769ff6.tar.gz daffm-ca6a853f3ab4994db3d45ba0677bdae1a1769ff6.zip | |
Fix command-shell from config example to use eval
Diffstat (limited to '')
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -71,10 +71,10 @@ xclip -selection clipboard -t $(file --mime-type % -bL) -i % # Poor man's marks (mark directory by creating a binding) # m1 marks current directory and <space>1 jumps to that directory -m1 = """command-shell echo "<daffm>map <space>1 cd %d" """ -m2 = """command-shell echo "<daffm>map <space>2 cd %d" """ -m3 = """command-shell echo "<daffm>map <space>3 cd %d" """ -m4 = """command-shell echo "<daffm>map <space>4 cd %d" """ +m1 = """eval echo "<daffm>map <space>1 cd %d" """ +m2 = """eval echo "<daffm>map <space>2 cd %d" """ +m3 = """eval echo "<daffm>map <space>3 cd %d" """ +m4 = """eval echo "<daffm>map <space>4 cd %d" """ ``` |
