Prompt, remove switch from slate.

This commit is contained in:
Ivan Malison 2014-10-24 05:04:38 -07:00
parent a2646b035a
commit f6927e0e95
3 changed files with 10 additions and 3 deletions

@ -1 +1 @@
Subproject commit cfc45035ac58e9713f8dc9bf7d75a95e79111307 Subproject commit 5466bf097ec4cf9f4029a70fb7365b5495e8160b

View File

@ -91,6 +91,14 @@ function prompt_tomorrow_colors() {
export SOURCE_CONTROL_COLOR="$fg[white]" export SOURCE_CONTROL_COLOR="$fg[white]"
} }
function prompt_monokai_colors() {
export SEPARATOR_COLOR="$fg[black]"
export HOSTNAME_COLOR="$fg[blue]"
export USERNAME_COLOR="$fg[red]"
export CURRENT_DIRECTORY_COLOR="$fg[magenta]"
export SOURCE_CONTROL_COLOR="$fg[white]"
}
function prompt_basic_colors_with_grey_separator() { function prompt_basic_colors_with_grey_separator() {
prompt_basic_colors prompt_basic_colors
export SEPARATOR_COLOR="$FG[239]" export SEPARATOR_COLOR="$FG[239]"

View File

@ -9,8 +9,7 @@ var grid = slate.op("grid", {
slate.bindAll({ slate.bindAll({
"esc:cmd": hint, "esc:cmd": hint,
"space:alt": grid, "space:alt": grid
"tab:cmd": slate.op("switch")
}); });
slate.configAll({ slate.configAll({