From 389cf345ff255465ed6c2f0f4b6d385d48fd37e4 Mon Sep 17 00:00:00 2001 From: Mykyta Solomko Date: Wed, 20 Feb 2019 15:34:37 +0200 Subject: [PATCH] Fixed typo, added __export_ps to README --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2601474..3501b10 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# My configuration files -This repo contains configuration files for `bash`, `git` and `vim` that are being used by me on daily bases. +# Dotfiles +This repo contains configuration files for `bash`, `git` and `vim` that are being used by me on daily basis. ## Files | Name | Description | @@ -24,6 +24,7 @@ This repo contains configuration files for `bash`, `git` and `vim` that are bein | Name | Arguments | Description | |:---------------------:|:-------------------------------------------:|:------------------------------------------------------------------------------------------------------------------------------| | __which_first_found() | List of executables to choose within `PATH` | This function is used by "guessing" mechainsm. Will return full path to first matched binary name provided in argument list. At the moment used only in `__export_*()` functions. | +| __export_ps() | None | `export PS1` and `export PS2` | | __export_pager() | Empty or pager name | `export PAGER`
If user hadn't explicitly specify pager name, then function will try to "guess" first available pager available using `__which_first_found()`.
Default list: **less**, **most**, **more**, **cat** | | __export_editor() | Empty or editor name | `export EDITOR`
If user hadn't explicitly specify editor name, then function will try to "guess" first available editor available using `__which_first_found()`.
Default list: **vim**, **emacs**, **nano**, **ee**, **vi** | | __export_browser() | Empty or browser name | `export BROWSER`
If user hadn't explicitly specify browser name, then function will try to "guess" first available editor available using `__which_first_found()`.
Default list: **firefox**, **midori**, **lynx** | -- 2.17.6