- `oneliner-init-hook'
- Hook of Oneliner's initial routine.
(default:nil)
- `oneliner-comint-send-hook'
- Hook for oneliner-comint-send(). oneliner-comint-send() runs this hook at last of function.
(default:nil)
- `oneliner-keep-temp-file'
- Non-nil means temporary files will not be deleted.
(default:nil)
- `oneliner-show-top-of-pipe-buffer'
- Non-nil means you can see the top of the pipe-buffer when you open one.
- `oneliner-beep'
- Non-nil means beep after command execution.
(default:nil)
See also `oneliner-beep-time'.
- `oneliner-beep-time'
- Minimum interval in second after which `oneliner-beep' will take effect.
(default:3)
- `oneliner-pwd-command-on-shell'
- shell command name that your shell display current directory path.
(default:" \\pwd")
The first caracter (space) has a reason.
I don't want to add the record of 'pwd' command to bash's history.
- `oneliner-complement-newline-for-input'
- Non-nil means complement newline at the end of input data.
(default:nil)
You should set this variable to 'non-nil'.
Because when you execute this code echo -n abc |
, 'pipe-buffer' doesn't have newline.
Some program needs newline for input to recognize it as one line.
- `oneliner-sync-default-directory-after-prompt'
- Non-nil means auto synchronization default-directory after prompt
(default:nil)
The original shell.el offen misses to synchronize current directory.
We fixed it on oneliner.el to use directory string in shell prompt.
- `oneliner-indirect-buffer-alist'
- Hold pairs of pipe-buffer number and its base buffer name.
(default:nil)
e.g. If you specify to indirect the number '9' to `*scratch*', `*Oneliner pipe*9' and `*scratch*' are keeped same anytime.
- `oneliner-handle-control-codes-flag'
- Non-nil means handle control codes in oneliner-mode buffer.
(default:nil)
You can execute programs such as 'wget' and 'apt-get' without corrupted screen.
- `oneliner-outpipe-busy-check'
- Non-nil means block the key input during outpipe busy.
(default:nil)
- `oneliner-display-evaled-value-flag'
- Non-nil means display the evaluated value of pipe-buffer.
(default:nil)
- `oneliner-eol-for-write'
- EOL-TYPE for writing temporary file.
You can select a type from [default,unix,dos,mac].
(default:nil=default)