mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 00:06:36 +00:00
12 lines
295 B
YAML
12 lines
295 B
YAML
---
|
|
- hosts: localhost
|
|
tasks:
|
|
- name: insert/update inputrc for history
|
|
blockinfile:
|
|
dest: "/home/{{ ansible_user_id }}/.inputrc"
|
|
create: yes
|
|
block: |
|
|
## arrow up
|
|
"\e[A":history-search-backward
|
|
## arrow down
|
|
"\e[B":history-search-forward |