Skip to content

Commit

Permalink
Improve documentation (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
denisidoro authored Apr 19, 2021
1 parent fcd7bd8 commit 7c62a5a
Show file tree
Hide file tree
Showing 8 changed files with 70 additions and 42 deletions.
28 changes: 28 additions & 0 deletions docs/config_file_example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# THIS IS EXPERIMENTAL
# the config file schema may change at any time

style:
tag:
color: cyan # text color. possible values: https://bit.ly/3gloNNI
width_percentage: 26 # column width relative to the terminal window
min_width: 20 # minimum column width as number of characters
comment:
color: blue
width_percentage: 42
min_width: 45
snippet:
color: white

finder:
command: fzf # equivalent to the --finder option
# overrides: --tac # equivalent to the --fzf-overrides option
# overrides_var: --tac # equivalent to the --fzf-overrides-var option

# cheats:
# path: /path/to/some/dir # equivalent to the --path option

# search:
# tags: git,!checkout # equivalent to the --tag-rules option

shell:
command: bash # shell used for shell out. possible values: bash, zsh, dash, ...
25 changes: 4 additions & 21 deletions docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,11 @@ Customization

You can change the [color scheme](https://github.com/junegunn/fzf/wiki/Color-schemes) by [overriding fzf options](#overriding-fzf-options).

In addition, you can change the text color for each column by setting the following environment variables:
- `$NAVI_TAG_COLOR`
- `$NAVI_COMMENT_COLOR`
- `$NAVI_SNIPPET_COLOR`

The values go [from 0 to 15](https://github.com/redox-os/termion/blob/189222555ef92a29de366f96d2a067b3a920fc24/src/color.rs#L62-L77).

For example, if you add the following to your .bashrc-like file, the comment color will be yellow:
```sh
export NAVI_COMMENT_COLOR=3
```
In addition, you can change the text color for each column by properly configuring *navi*'s `config.yaml`. Please check `navi --help` for more instructions.

### Resizing columns

You can change the column widths by setting the following environment variables:
- `$NAVI_TAG_WIDTH`
- `$NAVI_COMMENT_WIDTH`

The values go from 0 to 100 and represent the percentage the column will occupy.

For example, if you add the following to your .bashrc-like file, the comment column will be very small:
```sh
export NAVI_COMMENT_WIDTH=5
```
You can change the column widths by properly configuring *navi*'s `config.yaml`. Please check `navi --help` for more instructions.

### Overriding fzf options

Expand All @@ -56,3 +37,5 @@ export NAVI_FZF_OVERRIDES_VAR='--height 3'
# if you want to override for all cases
FZF_DEFAULT_OPTS="--height 3" navi
```

In addition, this can be set by properly configuring *navi*'s `config.yaml`. Please check `navi --help` for more instructions.
1 change: 0 additions & 1 deletion src/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ fn replace_variables_from_snippet(snippet: &str, tags: &str, variables: Variable
Ok(interpolated_snippet)
}

// TODO: make it depend on less inputs
pub fn act(
extractions: Result<extractor::Output>,
files: Vec<String>,
Expand Down
23 changes: 17 additions & 6 deletions src/config/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use std::str::FromStr;
const FINDER_POSSIBLE_VALUES: &[&str] = &[&"fzf", &"skim"];
const WIDGET_POSSIBLE_VALUES: &[&str] = &[&"bash", &"zsh", &"fish"];
const FUNC_POSSIBLE_VALUES: &[&str] = &[&"url::open", &"welcome", &"widget::last_command", &"map::expand"];
const INFO_POSSIBLE_VALUES: &[&str] = &[&"cheats-path", "config-path"];
const INFO_POSSIBLE_VALUES: &[&str] = &[&"cheats-path", "config-path", "config-example"];

impl FromStr for Shell {
type Err = &'static str;
Expand Down Expand Up @@ -46,6 +46,7 @@ impl FromStr for Info {
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"cheats-path" => Ok(Info::CheatsPath),
"config-example" => Ok(Info::ConfigExample),
"config-path" => Ok(Info::ConfigPath),
_ => Err("no match"),
}
Expand All @@ -57,9 +58,21 @@ impl FromStr for Info {
Please refer to https://github.com/denisidoro/navi
MORE ENVIRONMENT VARIABLES:
NAVI_TAG_WIDTH # tag column width as window integer %
NAVI_COMMENT_WIDTH # comment column width as window integer %
NAVI_SHELL # shell used in shell outs
NAVI_CONFIG # path to config file
NAVI_CONFIG_YAML # config file content
CONFIG FILE:
By default it's located in:
navi info config-path
You can generate a config file by running:
navi info config-example > "$(navi info config-path)"
Please check the generated config file for more info
FEATURE STABILITY:
experimental # may be removed or changed at any time
deprecated # may be removed in 3 months after first being deprecated
EXAMPLES:
navi # default behavior
Expand All @@ -78,8 +91,6 @@ EXAMPLES:
navi --fzf-overrides-var '--no-select-1' # same, but for variable selection
navi --fzf-overrides '--nth 1,2' # only consider the first two columns for search
navi --fzf-overrides '--no-exact' # use looser search algorithm
NAVI_SHELL=dash navi # use dash in shell outs
NAVI_TAG_WIDTH=30 NAVI_COMMENT_WIDTH=40 navi # customize column widths
navi --tag-rules='git,!checkout' # show non-checkout git snippets only"#)]
#[clap(setting = AppSettings::ColorAuto)]
#[clap(setting = AppSettings::ColoredHelp)]
Expand Down
20 changes: 8 additions & 12 deletions src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use crate::finder::FinderChoice;

use crate::terminal::style::Color;
pub use cli::*;
use std::process;

use env::EnvConfig;
use yaml::YamlConfig;
Expand All @@ -23,17 +22,14 @@ pub struct Config {
impl Config {
pub fn new() -> Self {
let env = EnvConfig::new();
match YamlConfig::get(&env) {
Ok(yaml) => Self {
yaml,
env,
clap: ClapConfig::new(),
},
Err(e) => {
eprintln!("Error parsing config file: {}", e);
process::exit(42)
}
}
let yaml = YamlConfig::get(&env).unwrap_or_else(|e| {
eprintln!("Error parsing config file: {}", e);
eprintln!("Fallbacking to default one...");
eprintln!();
YamlConfig::default()
});
let clap = ClapConfig::new();
Self { yaml, clap, env }
}

pub fn best_match(&self) -> bool {
Expand Down
11 changes: 11 additions & 0 deletions src/config/yaml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use std::convert::TryFrom;
use std::io::BufReader;
use std::path::Path;
use std::path::PathBuf;
use std::str::FromStr;

#[derive(Deserialize)]
pub struct Color(#[serde(deserialize_with = "color_deserialize")] TerminalColor);
Expand Down Expand Up @@ -47,11 +48,21 @@ pub struct Style {
#[derive(Deserialize)]
#[serde(default)]
pub struct Finder {
#[serde(deserialize_with = "finder_deserialize")]
pub command: FinderChoice,
pub overrides: Option<String>,
pub overrides_var: Option<String>,
}

fn finder_deserialize<'de, D>(deserializer: D) -> Result<FinderChoice, D::Error>
where
D: de::Deserializer<'de>,
{
let s: String = Deserialize::deserialize(deserializer)?;
FinderChoice::from_str(s.to_lowercase().as_str())
.map_err(|_| de::Error::custom(format!("Failed to deserialize finder: {}", s)))
}

#[derive(Deserialize)]
#[serde(default)]
pub struct Cheats {
Expand Down
2 changes: 2 additions & 0 deletions src/handler/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ use anyhow::Result;
pub enum Info {
CheatsPath,
ConfigPath,
ConfigExample,
}

pub fn main(info: &Info) -> Result<()> {
match info {
Info::CheatsPath => println!("{}", pathbuf_to_string(&filesystem::default_cheat_pathbuf()?)?),
Info::ConfigPath => println!("{}", pathbuf_to_string(&filesystem::default_config_pathbuf()?)?),
Info::ConfigExample => println!("{}", include_str!("../../docs/config_file_example.yaml")),
}
Ok(())
}
2 changes: 0 additions & 2 deletions src/handler/preview.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ fn extract_elements(argstr: &str) -> (&str, &str, &str) {
}

pub fn main(line: &str) -> Result<()> {
// dbg!(CONFIG.comment_color());

let (tags, comment, snippet) = extract_elements(line);

println!(
Expand Down

0 comments on commit 7c62a5a

Please sign in to comment.