2
0
mirror of https://github.com/frappe/bench.git synced 2025-02-05 04:18:25 +00:00
bench/playbooks/roles/bench/tasks/setup_inputrc.yml
2018-02-15 17:48:17 +05:30

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
...