mirror of
https://github.com/frappe/bench.git
synced 2025-02-05 04:18:25 +00:00
11 lines
249 B
YAML
11 lines
249 B
YAML
---
|
|
- name: insert/update inputrc for history
|
|
blockinfile:
|
|
dest: "/home/{{ frappe_user }}/.inputrc"
|
|
create: yes
|
|
block: |
|
|
## arrow up
|
|
"\e[A":history-search-backward
|
|
## arrow down
|
|
"\e[B":history-search-forward
|
|
... |