mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-27 03:14:56 +01:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
f1bd8c9feb
28 changed files with 3471 additions and 88 deletions
|
|
@ -3,9 +3,9 @@
|
||||||
|
|
||||||
Oh My Zsh is an open source, community-driven framework for managing your [zsh](http://www.zsh.org/) configuration. That sounds boring. Let's try this again.
|
Oh My Zsh is an open source, community-driven framework for managing your [zsh](http://www.zsh.org/) configuration. That sounds boring. Let's try this again.
|
||||||
|
|
||||||
__Oh My Zsh is a way of life!__ Once installed, your terminal prompt will become the talk of the town _or your money back!_ Each time you interface with your command prompt, you'll be able take advantage of the hundreds of bundled plugins and pretty themes. Strangers will come up to you in cafés and ask you, _"that is amazing. are you some sort of genius?"_ Finally, you'll begin to get the sort of attention that you always felt that you deserved. ...or maybe you'll just use the time that you saved to start flossing more often.
|
__Oh My Zsh is a way of life!__ Once installed, your terminal prompt will become the talk of the town _or your money back!_ Each time you interact with your command prompt, you'll be able take advantage of the hundreds of bundled plugins and pretty themes. Strangers will come up to you in cafés and ask you, _"that is amazing. are you some sort of genius?"_ Finally, you'll begin to get the sort of attention that you always felt that you deserved. ...or maybe you'll just use the time that you saved to start flossing more often.
|
||||||
|
|
||||||
To learn more, visit http://ohmyz.sh and/or follow [ohmyzsh](https://twitter.com/ohmyzsh) on twitter.
|
To learn more, visit http://ohmyz.sh and/or follow [ohmyzsh](https://twitter.com/ohmyzsh) on Twitter.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
|
@ -43,7 +43,9 @@ If you spot a plugin (or several) that you would like to use with Oh My Zsh, you
|
||||||
|
|
||||||
For example, this line might begin to look like...
|
For example, this line might begin to look like...
|
||||||
|
|
||||||
`plugins=(git bundler osx rake ruby)`
|
```shell
|
||||||
|
plugins=(git bundler osx rake ruby)
|
||||||
|
```
|
||||||
|
|
||||||
#### Using Plugins
|
#### Using Plugins
|
||||||
|
|
||||||
|
|
@ -51,7 +53,7 @@ Most plugins (should! we're working on this) include a __README__, which documen
|
||||||
|
|
||||||
### Themes
|
### Themes
|
||||||
|
|
||||||
We'll admit it. Early in the Oh My Zsh world... we may have gotten far too theme happy. We have over one hundred themes now bundled. Most of them have [screenshots](https://wiki.github.com/robbyrussell/oh-my-zsh/themes) on the wiki. Check them out!
|
We'll admit it. Early in the Oh My Zsh world, we may have gotten a bit too theme happy. We have over one hundred themes now bundled. Most of them have [screenshots](https://wiki.github.com/robbyrussell/oh-my-zsh/themes) on the wiki. Check them out!
|
||||||
|
|
||||||
#### Selecting a Theme
|
#### Selecting a Theme
|
||||||
|
|
||||||
|
|
@ -59,23 +61,29 @@ _Robby's theme is the default one. It's not the fanciest one. It's not the simpl
|
||||||
|
|
||||||
Once you find a theme that you want to use, you will need to edit the `~/.zshrc` file. You'll see an environment variable (all caps) in there that looks like:
|
Once you find a theme that you want to use, you will need to edit the `~/.zshrc` file. You'll see an environment variable (all caps) in there that looks like:
|
||||||
|
|
||||||
`ZSH_THEME="robbyrussell"`
|
```shell
|
||||||
|
ZSH_THEME="robbyrussell"
|
||||||
|
```
|
||||||
|
|
||||||
To use a different theme, simple change the value to match the name of your desired theme. For example:
|
To use a different theme, simple change the value to match the name of your desired theme. For example:
|
||||||
|
|
||||||
`ZSH_THEME="agnoster"` (this is one of the fancy ones)
|
```shell
|
||||||
|
ZSH_THEME="agnoster" # (this is one of the fancy ones)
|
||||||
|
```
|
||||||
|
|
||||||
Open up a new terminal window and your prompt should look something like...
|
Open up a new terminal window and your prompt should look something like...
|
||||||
|
|
||||||
In case you did not find a suitable theme for your needs, please have a look at the wiki for [more themes](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes).
|

|
||||||
|
|
||||||
|
In case you did not find a suitable theme for your needs, please have a look at the wiki for [more of them](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes).
|
||||||
|
|
||||||
## Advanced Topics
|
## Advanced Topics
|
||||||
|
|
||||||
If you're the type that likes to get their hands dirty... these sections might resonate.
|
If you're the type that likes to get their hands dirty, these sections might resonate.
|
||||||
|
|
||||||
### Advanced Installation
|
### Advanced Installation
|
||||||
|
|
||||||
For those who want to install this manually and/or set custom paths.
|
Some users may want to change the default path, or manually install Oh My Zsh.
|
||||||
|
|
||||||
#### Custom Directory
|
#### Custom Directory
|
||||||
|
|
||||||
|
|
@ -83,27 +91,37 @@ The default location is `~/.oh-my-zsh` (hidden in your home directory)
|
||||||
|
|
||||||
If you'd like to change the install directory with the `ZSH` environment variable, either by running `export ZSH=/your/path` before installing, or by setting it before the end of the install pipeline like this:
|
If you'd like to change the install directory with the `ZSH` environment variable, either by running `export ZSH=/your/path` before installing, or by setting it before the end of the install pipeline like this:
|
||||||
|
|
||||||
`curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | ZSH=~/.dotfiles/zsh sh`
|
```shell
|
||||||
|
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | ZSH=~/.dotfiles/zsh sh
|
||||||
|
```
|
||||||
|
|
||||||
#### Manual Installation
|
#### Manual Installation
|
||||||
|
|
||||||
##### 1. Clone the repository:
|
##### 1. Clone the repository:
|
||||||
|
|
||||||
`git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh`
|
```shell
|
||||||
|
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
|
||||||
|
```
|
||||||
|
|
||||||
##### 2. *Optionally*, backup your existing @~/.zshrc@ file:
|
##### 2. *Optionally*, backup your existing `~/.zshrc` file:
|
||||||
|
|
||||||
`cp ~/.zshrc ~/.zshrc.orig`
|
```shell
|
||||||
|
cp ~/.zshrc ~/.zshrc.orig
|
||||||
|
```
|
||||||
|
|
||||||
##### 3. Create a new zsh configuration file
|
##### 3. Create a new zsh configuration file
|
||||||
|
|
||||||
You can create a new zsh config file by copying the template that we included for you.
|
You can create a new zsh config file by copying the template that we included for you.
|
||||||
|
|
||||||
`cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc`
|
```shell
|
||||||
|
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
|
||||||
|
```
|
||||||
|
|
||||||
##### 4. Change your default shell
|
##### 4. Change your default shell
|
||||||
|
|
||||||
`chsh -s /bin/zsh`
|
```shell
|
||||||
|
chsh -s /bin/zsh
|
||||||
|
```
|
||||||
|
|
||||||
##### 5. Initialize your new zsh configuration
|
##### 5. Initialize your new zsh configuration
|
||||||
|
|
||||||
|
|
@ -120,7 +138,7 @@ If you have any hiccups installing, here are a few common fixes.
|
||||||
|
|
||||||
If you want to override any of the default behaviors, just add a new file (ending in `.zsh`) in the `custom/` directory.
|
If you want to override any of the default behaviors, just add a new file (ending in `.zsh`) in the `custom/` directory.
|
||||||
|
|
||||||
If you have many functions that go well together, you can put them as a `abcyzeae.plugin.zsh` file in the `custom/plugins/` directory and then enable this plugin.
|
If you have many functions that go well together, you can put them as a `XYZ.plugin.zsh` file in the `custom/plugins/` directory and then enable this plugin.
|
||||||
|
|
||||||
If you would like to override the functionality of a plugin distributed with Oh My Zsh, create a plugin of the same name in the `custom/plugins/` directory and it will be loaded instead of the one in `plugins/`.
|
If you would like to override the functionality of a plugin distributed with Oh My Zsh, create a plugin of the same name in the `custom/plugins/` directory and it will be loaded instead of the one in `plugins/`.
|
||||||
|
|
||||||
|
|
@ -128,17 +146,23 @@ If you would like to override the functionality of a plugin distributed with Oh
|
||||||
|
|
||||||
By default, you will be prompted to check for upgrades every few weeks. If you would like `oh-my-zsh` to automatically upgrade itself without prompting you, set the following in your `~/.zshrc`:
|
By default, you will be prompted to check for upgrades every few weeks. If you would like `oh-my-zsh` to automatically upgrade itself without prompting you, set the following in your `~/.zshrc`:
|
||||||
|
|
||||||
`DISABLE_UPDATE_PROMPT=true`
|
```shell
|
||||||
|
DISABLE_UPDATE_PROMPT=true
|
||||||
|
```
|
||||||
|
|
||||||
To disable automatic upgrades, set the following in your `~/.zshrc`:
|
To disable automatic upgrades, set the following in your `~/.zshrc`:
|
||||||
|
|
||||||
`DISABLE_AUTO_UPDATE=true`
|
```shell
|
||||||
|
DISABLE_AUTO_UPDATE=true
|
||||||
|
```
|
||||||
|
|
||||||
### Manual Updates
|
### Manual Updates
|
||||||
|
|
||||||
If you'd like to upgrade at any point in time (maybe someone just released a new plugin and you don't want to wait a week?)... you just need to run:
|
If you'd like to upgrade at any point in time (maybe someone just released a new plugin and you don't want to wait a week?) you just need to run:
|
||||||
|
|
||||||
`upgrade_oh_my_zsh`
|
```shell
|
||||||
|
upgrade_oh_my_zsh
|
||||||
|
```
|
||||||
|
|
||||||
Magic!
|
Magic!
|
||||||
|
|
||||||
|
|
@ -154,7 +178,7 @@ I'm far from being a [Zsh](http://www.zsh.org/) expert and suspect there are man
|
||||||
|
|
||||||
We also need people to test out pull-requests. So take a look through [the open issues](https://github.com/robbyrussell/oh-my-zsh/issues) and help where you can.
|
We also need people to test out pull-requests. So take a look through [the open issues](https://github.com/robbyrussell/oh-my-zsh/issues) and help where you can.
|
||||||
|
|
||||||
### Do NOT Send Us Themes
|
### Do NOT send us themes
|
||||||
|
|
||||||
We have (more than) enough themes for the time being. Please add your theme to the [external themes](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes) wiki page.
|
We have (more than) enough themes for the time being. Please add your theme to the [external themes](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes) wiki page.
|
||||||
|
|
||||||
|
|
@ -166,12 +190,12 @@ Thank you so much!
|
||||||
|
|
||||||
## Follow Us
|
## Follow Us
|
||||||
|
|
||||||
We have an [ohmyzsh](https://twitter.com/ohmyzsh) account. You should follow it.
|
We have an [@ohmyzsh](https://twitter.com/ohmyzsh) Twitter account. You should follow it.
|
||||||
|
|
||||||
## Merchandise
|
## Merchandise
|
||||||
|
|
||||||
We have [stickers](http://shop.planetargon.com/products/ohmyzsh-stickers-set-of-3-stickers) and [shirts](http://shop.planetargon.com/products/ohmyzsh-t-shirts) for you to show off your love of Oh My Zsh. Again, this will help you become the talk of the town!
|
We have [stickers](http://shop.planetargon.com/products/ohmyzsh-stickers-set-of-3-stickers) and [shirts](http://shop.planetargon.com/products/ohmyzsh-t-shirts) for you to show off your love of Oh My Zsh. Again, this will help you become the talk of the town!
|
||||||
|
|
||||||
## LICENSE
|
## License
|
||||||
|
|
||||||
Oh My Zsh is released under the [MIT license](https://github.com/robbyrussell/oh-my-zsh/blob/master/MIT-LICENSE.txt).
|
Oh My Zsh is released under the [MIT license](https://github.com/robbyrussell/oh-my-zsh/blob/master/MIT-LICENSE.txt).
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,22 @@ function take() {
|
||||||
cd $1
|
cd $1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function open_command() {
|
||||||
|
local open_cmd
|
||||||
|
|
||||||
|
# define the open command
|
||||||
|
case "$OSTYPE" in
|
||||||
|
darwin*) open_cmd="open" ;;
|
||||||
|
cygwin*) open_cmd="cygstart" ;;
|
||||||
|
linux*) open_cmd="xdg-open" ;;
|
||||||
|
*) echo "Platform $OSTYPE not supported"
|
||||||
|
return 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
nohup $open_cmd "$@" &>/dev/null
|
||||||
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Get the value of an alias.
|
# Get the value of an alias.
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,9 @@
|
||||||
# (In screen, only short_tab_title is used)
|
# (In screen, only short_tab_title is used)
|
||||||
# Limited support for Apple Terminal (Terminal can't set window and tab separately)
|
# Limited support for Apple Terminal (Terminal can't set window and tab separately)
|
||||||
function title {
|
function title {
|
||||||
|
emulate -L zsh
|
||||||
|
setopt prompt_subst
|
||||||
|
|
||||||
[[ "$EMACS" == *term* ]] && return
|
[[ "$EMACS" == *term* ]] && return
|
||||||
|
|
||||||
# if $2 is unset use $1 as default
|
# if $2 is unset use $1 as default
|
||||||
|
|
@ -23,6 +26,10 @@ function title {
|
||||||
|
|
||||||
ZSH_THEME_TERM_TAB_TITLE_IDLE="%15<..<%~%<<" #15 char left truncated PWD
|
ZSH_THEME_TERM_TAB_TITLE_IDLE="%15<..<%~%<<" #15 char left truncated PWD
|
||||||
ZSH_THEME_TERM_TITLE_IDLE="%n@%m: %~"
|
ZSH_THEME_TERM_TITLE_IDLE="%n@%m: %~"
|
||||||
|
# Avoid duplication of directory in terminals with independent dir display
|
||||||
|
if [[ $TERM_PROGRAM == Apple_Terminal ]]; then
|
||||||
|
ZSH_THEME_TERM_TITLE_IDLE="%n@%m"
|
||||||
|
fi
|
||||||
|
|
||||||
# Runs before showing the prompt
|
# Runs before showing the prompt
|
||||||
function omz_termsupport_precmd {
|
function omz_termsupport_precmd {
|
||||||
|
|
@ -43,7 +50,7 @@ function omz_termsupport_preexec {
|
||||||
setopt extended_glob
|
setopt extended_glob
|
||||||
|
|
||||||
# cmd name only, or if this is sudo or ssh, the next cmd
|
# cmd name only, or if this is sudo or ssh, the next cmd
|
||||||
local CMD=${1[(wr)^(*=*|sudo|ssh|rake|-*)]:gs/%/%%}
|
local CMD=${1[(wr)^(*=*|sudo|ssh|mosh|rake|-*)]:gs/%/%%}
|
||||||
local LINE="${2:gs/%/%%}"
|
local LINE="${2:gs/%/%%}"
|
||||||
|
|
||||||
title '$CMD' '%100>...>$LINE%<<'
|
title '$CMD' '%100>...>$LINE%<<'
|
||||||
|
|
|
||||||
11
oh-my-zsh.sh
11
oh-my-zsh.sh
|
|
@ -29,11 +29,6 @@ for config_file ($ZSH/lib/*.zsh); do
|
||||||
source $config_file
|
source $config_file
|
||||||
done
|
done
|
||||||
|
|
||||||
# Load all of your custom configurations from custom/
|
|
||||||
for config_file ($ZSH_CUSTOM/*.zsh(N)); do
|
|
||||||
source $config_file
|
|
||||||
done
|
|
||||||
unset config_file
|
|
||||||
|
|
||||||
is_plugin() {
|
is_plugin() {
|
||||||
local base_dir=$1
|
local base_dir=$1
|
||||||
|
|
@ -77,6 +72,12 @@ for plugin ($plugins); do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Load all of your custom configurations from custom/
|
||||||
|
for config_file ($ZSH_CUSTOM/*.zsh(N)); do
|
||||||
|
source $config_file
|
||||||
|
done
|
||||||
|
unset config_file
|
||||||
|
|
||||||
# Load the theme
|
# Load the theme
|
||||||
if [ "$ZSH_THEME" = "random" ]; then
|
if [ "$ZSH_THEME" = "random" ]; then
|
||||||
themes=($ZSH/themes/*zsh-theme)
|
themes=($ZSH/themes/*zsh-theme)
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,8 @@ function push_future() {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Called by zsh when directory changes
|
# Called by zsh when directory changes
|
||||||
function chpwd() {
|
chpwd_functions+=(chpwd_dirhistory)
|
||||||
|
function chpwd_dirhistory() {
|
||||||
push_past $PWD
|
push_past $PWD
|
||||||
# If DIRHISTORY_CD is not set...
|
# If DIRHISTORY_CD is not set...
|
||||||
if [[ -z "${DIRHISTORY_CD+x}" ]]; then
|
if [[ -z "${DIRHISTORY_CD+x}" ]]; then
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,8 @@ if [[ -f ${dirstack_file} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then
|
||||||
[[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD
|
[[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD
|
||||||
fi
|
fi
|
||||||
|
|
||||||
chpwd() {
|
chpwd_functions+=(chpwd_dirpersist)
|
||||||
|
chpwd_dirpersist() {
|
||||||
if (( $DIRSTACKSIZE <= 0 )) || [[ -z $dirstack_file ]]; then return; fi
|
if (( $DIRSTACKSIZE <= 0 )) || [[ -z $dirstack_file ]]; then return; fi
|
||||||
local -ax my_stack
|
local -ax my_stack
|
||||||
my_stack=( ${PWD} ${dirstack} )
|
my_stack=( ${PWD} ${dirstack} )
|
||||||
|
|
|
||||||
135
plugins/emoji/README.md
Normal file
135
plugins/emoji/README.md
Normal file
|
|
@ -0,0 +1,135 @@
|
||||||
|
# emoji plugin
|
||||||
|
|
||||||
|
Support for conveniently working with Unicode emoji in Zsh.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
This plugin provides support for working with Unicode emoji characters in `zsh` using human-readable identifiers. It provides global variables which map emoji names to the actual characters, country names to their flags, and some named groupings of emoji. It also provides associated functions for displaying them.
|
||||||
|
|
||||||
|
#### Variables
|
||||||
|
|
||||||
|
Variable | Description
|
||||||
|
----------------- | --------------------------------
|
||||||
|
$emoji | Maps emoji names to characters
|
||||||
|
$emoji_flags | Maps country names to flag characters (using region indicators)
|
||||||
|
$emoji_groups | Named groups of emoji. Keys are group names; values are whitespace-separated lists of character names
|
||||||
|
|
||||||
|
You may define new emoji groups at run time by modifying `$emoji_groups`. The special group name `all` is reserved for use by the plugin. You should not modify `$emoji` or `$emoji_flags`.
|
||||||
|
|
||||||
|
#### Functions
|
||||||
|
|
||||||
|
Function | Description
|
||||||
|
---------------- | -------------------------------
|
||||||
|
random_emoji | Prints a random emoji character
|
||||||
|
display_emoji | Displays emoji, along with their names
|
||||||
|
|
||||||
|
## Usage and Examples
|
||||||
|
|
||||||
|
To output a specific emoji, use:
|
||||||
|
```
|
||||||
|
$> echo $emoji[<name>]
|
||||||
|
```
|
||||||
|
E.g.:
|
||||||
|
```
|
||||||
|
$> echo $emoji[mouse_face]
|
||||||
|
```
|
||||||
|
|
||||||
|
To output a random emoji, use:
|
||||||
|
```
|
||||||
|
$> random_emoji
|
||||||
|
```
|
||||||
|
To output a random emoji from a particular group, use:
|
||||||
|
```
|
||||||
|
$> random_emoji <group>
|
||||||
|
```
|
||||||
|
E.g.:
|
||||||
|
```
|
||||||
|
$> random_emoji fruits
|
||||||
|
$> random_emoji animals
|
||||||
|
$> random_emoji vehicles
|
||||||
|
$> random_emoji faces
|
||||||
|
```
|
||||||
|
|
||||||
|
The defined group names can be found with `echo ${(k)emoji_groups}`.
|
||||||
|
|
||||||
|
To list all available emoji with their names, use:
|
||||||
|
```
|
||||||
|
$> display_emoji
|
||||||
|
$> display_emoji fruits
|
||||||
|
$> display_emoji animals
|
||||||
|
$> display_emoji vehicles
|
||||||
|
$> display_emoji faces
|
||||||
|
```
|
||||||
|
|
||||||
|
To use emoji in a prompt:
|
||||||
|
```
|
||||||
|
PROMPT="$emoji[penguin] > ""
|
||||||
|
PROMPT='$(random_emoji fruits) > '
|
||||||
|
surfer=$emoji[surfer]
|
||||||
|
PROMPT="$surfer > "
|
||||||
|
```
|
||||||
|
|
||||||
|
## Technical Details
|
||||||
|
|
||||||
|
The emoji names and codes are sourced from Unicode Technical Report \#51, which provides information on emoji support in Unicode. It can be found at http://www.unicode.org/reports/tr51/index.html.
|
||||||
|
|
||||||
|
The group definitions are added by this OMZ plugin. They are not based on external definitions. (As far as I can tell. -apjanke)
|
||||||
|
|
||||||
|
The values in the `$emoji*` maps are the emoji characters themselves, not escape sequences or other forms that require interpretation. They can be used in any context and do not require escape sequence support from commands like `echo` or `print`.
|
||||||
|
|
||||||
|
The emoji in the main `$emoji` map are standalone character sequences which can all be output on their own, without worrying about combining characters. The values may actually be multi-code-point sequences, instead of a single code point, and may include combining characters in those sequences. But they're arranged so their effects do not extend beyond that sequence.
|
||||||
|
|
||||||
|
The exception to this is the skin tone variation selectors. These are included in the main `$emoji` map because they can be displayed on their own, as well as used as combining characters. (If they follow a character that is not one of the emoji characters they combine with, they are displayed as color swatches.)
|
||||||
|
|
||||||
|
|
||||||
|
## Experimental Features
|
||||||
|
|
||||||
|
This defines some additional variables and functions, but these are experimental and subject to change at any time. You shouldn't rely on them being available. They're mostly for the use of emoji plugin developers to help decide what to include in future revisions.
|
||||||
|
|
||||||
|
Variables:
|
||||||
|
|
||||||
|
Variable | Description
|
||||||
|
----------------- | --------------------------------
|
||||||
|
$emoji2 | Auxiliary and combining characters
|
||||||
|
$emoji_skintone | Skin tone modifiers (from Unicode 8.0)
|
||||||
|
|
||||||
|
|
||||||
|
#### Skin Tone Variation Selection
|
||||||
|
|
||||||
|
This includes experimental support for the skin tone Variation Selectors introduced with Unicode 8.0, which let you select different skin tones for emoji involving humans.
|
||||||
|
|
||||||
|
NOTE: This really is experimental. The skin tone selectors are a relatively new feature and may not be supported by all systems. And the support in this plugin is a work in progress. It may not work in all places. In fact, I haven't gotten it to work anywhere yet. -apjanke
|
||||||
|
|
||||||
|
The "variation selectors" are combining characters which change the appearance of the preceding character. A variation selector character can be output immediately following a human emoji to change its skin tone color. You can also output a variation selector on its own to display a color swatch of that skin tone.
|
||||||
|
|
||||||
|
The `$emoji_skintone` associative array maps skin tone IDs to the variation selector characters. To use one, output it immediately following a smiley or other human emoji.
|
||||||
|
|
||||||
|
```
|
||||||
|
echo "$emoji[smiling_face_with_open_mouth]$emoji_skintone[4]"
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that `$emoji_skintone` is an associative array, and its keys are the *names* of "Fitzpatrick Skin Type" groups, not linear indexes into a normal array. The names are `1_2`, `3`, `4`, `5`, and `6`. (Types 1 and 2 are combined into a single color.) See the [Diversity section in Unicode TR 51](http://www.unicode.org/reports/tr51/index.html#Diversity) for details.
|
||||||
|
|
||||||
|
## TODO
|
||||||
|
|
||||||
|
These are things that could be enhanced in future revisions of the plugin.
|
||||||
|
|
||||||
|
* Incorporate CLDR data for ordering and groupings
|
||||||
|
* Short :bracket: style names (from gemoji)
|
||||||
|
* Incorporate `gemoji` data
|
||||||
|
* Country codes for flags
|
||||||
|
* ZWJ combining function?
|
||||||
|
|
||||||
|
#### Gemoji support
|
||||||
|
|
||||||
|
The [gemoji project](https://github.com/github/gemoji) seems to be the de facto main source for short names and other emoji-related metadata that isn't included in the official Unicode reports. (I'm saying this just from looking at the google results for "emoji short names" and related searches. -apjanke)
|
||||||
|
|
||||||
|
If this plugin is updated to provide short names, CLDR sorting data, and similar stuff, it should probably be changed to use the Gemoji project, and the `update_emoji.pl` script be rewritten in Ruby so it can use the Gemoji library directly instead of parsing its data files.
|
||||||
|
|
||||||
|
This does *not* mean that it should use Gemoji at run time. None of the `zsh` plugin stuff should call Gemoji or Ruby code. Rather, the "build time" `update_emoji.pl` script should be rewritten to use Gemoji to generate a pure-native-`zsh` character definition file which would be checked in to the repo and can be called by OMZ users without having Gemoji installed.
|
||||||
|
|
||||||
|
#### ZWJ combining function
|
||||||
|
|
||||||
|
One of the newer features of Unicode emoji is the ability to use the "Zero-Width Joiner" character to compose multiple emoji characters in to a single "emoji ligature" glyph. For example, this is [how Apple supports "family" emoji with various genders and skin tones](http://www.unicode.org/reports/tr51/index.html#ZWJ_Sequences).
|
||||||
|
|
||||||
|
These are a pain to write out (and probably worse to read), and it might be convenient to have a couple functions for concisely composing them, if wider support for them appears.
|
||||||
1294
plugins/emoji/emoji-char-definitions.zsh
Normal file
1294
plugins/emoji/emoji-char-definitions.zsh
Normal file
File diff suppressed because it is too large
Load diff
1308
plugins/emoji/emoji-data.txt
Normal file
1308
plugins/emoji/emoji-data.txt
Normal file
File diff suppressed because it is too large
Load diff
289
plugins/emoji/emoji.plugin.zsh
Normal file
289
plugins/emoji/emoji.plugin.zsh
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
# emoji plugin
|
||||||
|
#
|
||||||
|
# Makes emoji support available within ZSH
|
||||||
|
#
|
||||||
|
# See the README for documentation.
|
||||||
|
|
||||||
|
_omz_emoji_plugin_dir="${0:h}"
|
||||||
|
|
||||||
|
() {
|
||||||
|
|
||||||
|
local LC_ALL=en_US.UTF-8
|
||||||
|
|
||||||
|
typeset -gAH emoji_groups
|
||||||
|
typeset -gAH emoji_con
|
||||||
|
typeset -gAH emoji2
|
||||||
|
typeset -gAH emoji_skintone
|
||||||
|
|
||||||
|
source "$_omz_emoji_plugin_dir/emoji-char-definitions.zsh"
|
||||||
|
unset _omz_emoji_plugin_dir
|
||||||
|
|
||||||
|
# These additional emoji are not in the definition file, but are useful in conjunction with it
|
||||||
|
|
||||||
|
# This is a combinin character that can be placed after any other character to surround
|
||||||
|
# it in a "keycap" symbol.
|
||||||
|
# The digits 0-9 are already in the emoji table as keycap_digit_<N>, keycap_ten, etc.
|
||||||
|
# It's unclear whether this should be in the $emoji array, because those characters are all ones
|
||||||
|
# which can be displayed on their own.
|
||||||
|
#emoji[combining_enclosing_keycap]="\U20E3"
|
||||||
|
|
||||||
|
emoji[regional_indicator_symbol_letter_d_regional_indicator_symbol_letter_e]=$'\xF0\x9F\x87\xA9\xF0\x9F\x87\xAA'
|
||||||
|
emoji[regional_indicator_symbol_letter_g_regional_indicator_symbol_letter_b]=$'\xF0\x9F\x87\xAC\xF0\x9F\x87\xA7'
|
||||||
|
emoji[regional_indicator_symbol_letter_c_regional_indicator_symbol_letter_n]=$'\xF0\x9F\x87\xA8\xF0\x9F\x87\xB3'
|
||||||
|
emoji[regional_indicator_symbol_letter_j_regional_indicator_symbol_letter_p]=$'\xF0\x9F\x87\xAF\xF0\x9F\x87\xB5'
|
||||||
|
emoji[regional_indicator_symbol_letter_k_regional_indicator_symbol_letter_r]=$'\xF0\x9F\x87\xB0\xF0\x9F\x87\xB7'
|
||||||
|
emoji[regional_indicator_symbol_letter_f_regional_indicator_symbol_letter_r]=$'\xF0\x9F\x87\xAB\xF0\x9F\x87\xB7'
|
||||||
|
emoji[regional_indicator_symbol_letter_e_regional_indicator_symbol_letter_s]=$'\xF0\x9F\x87\xAA\xF0\x9F\x87\xB8'
|
||||||
|
emoji[regional_indicator_symbol_letter_i_regional_indicator_symbol_letter_t]=$'\xF0\x9F\x87\xAE\xF0\x9F\x87\xB9'
|
||||||
|
emoji[regional_indicator_symbol_letter_u_regional_indicator_symbol_letter_s]=$'\xF0\x9F\x87\xBA\xF0\x9F\x87\xB8'
|
||||||
|
emoji[regional_indicator_symbol_letter_r_regional_indicator_symbol_letter_u]=$'\xF0\x9F\x87\xB7\xF0\x9F\x87\xBA'
|
||||||
|
|
||||||
|
# Nonstandard alias names
|
||||||
|
emoji[vulcan_salute]=$'\U1F596'
|
||||||
|
|
||||||
|
|
||||||
|
# Emoji combining and auxiliary characters
|
||||||
|
|
||||||
|
# "Variation Selectors" for controlling text vs emoji style presentation
|
||||||
|
# These apply to the immediately preceding character
|
||||||
|
emoji2[text_style]=$'\UFE0E'
|
||||||
|
emoji2[emoji_style]=$'\UFE0F'
|
||||||
|
# Joiner that indicates a single combined-form glyph (ligature) should be used
|
||||||
|
emoji2[zero_width_joiner]=$'\U200D'
|
||||||
|
# Skin tone modifiers
|
||||||
|
emoji2[emoji_modifier_fitzpatrick_type_1_2]=$'\U1F3FB'
|
||||||
|
emoji2[emoji_modifier_fitzpatrick_type_3]=$'\U1F3FC'
|
||||||
|
emoji2[emoji_modifier_fitzpatrick_type_4]=$'\U1F3FD'
|
||||||
|
emoji2[emoji_modifier_fitzpatrick_type_5]=$'\U1F3FE'
|
||||||
|
emoji2[emoji_modifier_fitzpatrick_type_6]=$'\U1F3FF'
|
||||||
|
# Various other combining characters. (Incomplete list; I selected ones that sound useful)
|
||||||
|
emoji2[combining_enclosing_circle]=$'\U20DD'
|
||||||
|
emoji2[combining_enclosing_square]=$'\U20DE'
|
||||||
|
emoji2[combining_enclosing_diamond]=$'\U20DF'
|
||||||
|
emoji2[combining_enclosing_circle_backslash]=$'\U20E0'
|
||||||
|
emoji2[combining_enclosing_screen]=$'\U20E2'
|
||||||
|
emoji2[combining_enclosing_keycap]=$'\U20E3'
|
||||||
|
emoji2[combining_enclosing_upward_pointing_triangle]=$'\U20E4'
|
||||||
|
|
||||||
|
# Easier access to skin tone modifiers
|
||||||
|
emoji_skintone[1_2]=$'\U1F3FB'
|
||||||
|
emoji_skintone[3]=$'\U1F3FC'
|
||||||
|
emoji_skintone[4]=$'\U1F3FD'
|
||||||
|
emoji_skintone[5]=$'\U1F3FE'
|
||||||
|
emoji_skintone[6]=$'\U1F3FF'
|
||||||
|
|
||||||
|
# Emoji groups
|
||||||
|
# These are stored in a single associative array, $emoji_groups, to avoid cluttering up the global
|
||||||
|
# namespace, and to allow adding additional group definitions at run time.
|
||||||
|
# The keys are the group names, and the values are whitespace-separated lists of emoji character names.
|
||||||
|
#
|
||||||
|
# These extra local arrays are used to allow more convenient formatting of the source code.
|
||||||
|
|
||||||
|
emoji_groups[fruits]="
|
||||||
|
tomato
|
||||||
|
aubergine
|
||||||
|
grapes
|
||||||
|
melon
|
||||||
|
watermelon
|
||||||
|
tangerine
|
||||||
|
banana
|
||||||
|
pineapple
|
||||||
|
red_apple
|
||||||
|
green_apple
|
||||||
|
peach
|
||||||
|
cherries
|
||||||
|
strawberry
|
||||||
|
lemon
|
||||||
|
pear
|
||||||
|
"
|
||||||
|
|
||||||
|
emoji_groups[vehicles]="
|
||||||
|
airplane
|
||||||
|
rocket
|
||||||
|
railway_car
|
||||||
|
high_speed_train
|
||||||
|
high_speed_train_with_bullet_nose
|
||||||
|
bus
|
||||||
|
ambulance
|
||||||
|
fire_engine
|
||||||
|
police_car
|
||||||
|
taxi
|
||||||
|
automobile
|
||||||
|
recreational_vehicle
|
||||||
|
delivery_truck
|
||||||
|
ship
|
||||||
|
speedboat
|
||||||
|
bicycle
|
||||||
|
helicopter
|
||||||
|
steam_locomotive
|
||||||
|
train
|
||||||
|
light_rail
|
||||||
|
tram
|
||||||
|
oncoming_bus
|
||||||
|
trolleybus
|
||||||
|
minibus
|
||||||
|
oncoming_police_car
|
||||||
|
oncoming_taxi
|
||||||
|
oncoming_automobile
|
||||||
|
articulated_lorry
|
||||||
|
tractor
|
||||||
|
monorail
|
||||||
|
mountain_railway
|
||||||
|
suspension_railway
|
||||||
|
mountain_cableway
|
||||||
|
aerial_tramway
|
||||||
|
rowboat
|
||||||
|
bicyclist
|
||||||
|
mountain_bicyclist
|
||||||
|
sailboat
|
||||||
|
"
|
||||||
|
|
||||||
|
emoji_groups[animals]="
|
||||||
|
snail
|
||||||
|
snake
|
||||||
|
horse
|
||||||
|
sheep
|
||||||
|
monkey
|
||||||
|
chicken
|
||||||
|
boar
|
||||||
|
elephant
|
||||||
|
octopus
|
||||||
|
spiral_shell
|
||||||
|
bug
|
||||||
|
ant
|
||||||
|
honeybee
|
||||||
|
lady_beetle
|
||||||
|
fish
|
||||||
|
tropical_fish
|
||||||
|
blowfish
|
||||||
|
turtle
|
||||||
|
hatching_chick
|
||||||
|
baby_chick
|
||||||
|
front_facing_baby_chick
|
||||||
|
bird
|
||||||
|
penguin
|
||||||
|
koala
|
||||||
|
poodle
|
||||||
|
bactrian_camel
|
||||||
|
dolphin
|
||||||
|
mouse_face
|
||||||
|
cow_face
|
||||||
|
tiger_face
|
||||||
|
rabbit_face
|
||||||
|
cat_face
|
||||||
|
dragon_face
|
||||||
|
spouting_whale
|
||||||
|
horse_face
|
||||||
|
monkey_face
|
||||||
|
dog_face
|
||||||
|
pig_face
|
||||||
|
frog_face
|
||||||
|
hamster_face
|
||||||
|
wolf_face
|
||||||
|
bear_face
|
||||||
|
panda_face
|
||||||
|
rat
|
||||||
|
mouse
|
||||||
|
ox
|
||||||
|
water_buffalo
|
||||||
|
cow
|
||||||
|
tiger
|
||||||
|
leopard
|
||||||
|
rabbit
|
||||||
|
cat
|
||||||
|
dragon
|
||||||
|
crocodile
|
||||||
|
whale
|
||||||
|
ram
|
||||||
|
goat
|
||||||
|
rooster
|
||||||
|
dog
|
||||||
|
pig
|
||||||
|
dromedary_camel
|
||||||
|
"
|
||||||
|
|
||||||
|
emoji_groups[faces]="
|
||||||
|
grinning_face_with_smiling_eyes
|
||||||
|
face_with_tears_of_joy
|
||||||
|
smiling_face_with_open_mouth
|
||||||
|
smiling_face_with_open_mouth_and_smiling_eyes
|
||||||
|
smiling_face_with_open_mouth_and_cold_sweat
|
||||||
|
smiling_face_with_open_mouth_and_tightly_closed_eyes
|
||||||
|
winking_face
|
||||||
|
smiling_face_with_smiling_eyes
|
||||||
|
face_savouring_delicious_food
|
||||||
|
relieved_face
|
||||||
|
smiling_face_with_heart_shaped_eyes
|
||||||
|
smirking_face
|
||||||
|
unamused_face
|
||||||
|
face_with_cold_sweat
|
||||||
|
pensive_face
|
||||||
|
confounded_face
|
||||||
|
face_throwing_a_kiss
|
||||||
|
kissing_face_with_closed_eyes
|
||||||
|
face_with_stuck_out_tongue_and_winking_eye
|
||||||
|
face_with_stuck_out_tongue_and_tightly_closed_eyes
|
||||||
|
disappointed_face
|
||||||
|
angry_face
|
||||||
|
pouting_face
|
||||||
|
crying_face
|
||||||
|
persevering_face
|
||||||
|
face_with_look_of_triumph
|
||||||
|
disappointed_but_relieved_face
|
||||||
|
fearful_face
|
||||||
|
weary_face
|
||||||
|
sleepy_face
|
||||||
|
tired_face
|
||||||
|
loudly_crying_face
|
||||||
|
face_with_open_mouth_and_cold_sweat
|
||||||
|
face_screaming_in_fear
|
||||||
|
astonished_face
|
||||||
|
flushed_face
|
||||||
|
dizzy_face
|
||||||
|
face_with_medical_mask
|
||||||
|
"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
# Prints a random emoji character
|
||||||
|
#
|
||||||
|
# random_emoji [group]
|
||||||
|
#
|
||||||
|
function random_emoji() {
|
||||||
|
local group=$1
|
||||||
|
local names
|
||||||
|
if [[ -z "$group" || "$group" == "all" ]]; then
|
||||||
|
names=(${(k)emoji})
|
||||||
|
else
|
||||||
|
names=(${=emoji_groups[$group_name]})
|
||||||
|
fi
|
||||||
|
local list_size=$#names
|
||||||
|
local random_index=$(( ( RANDOM % $list_size ) + 1 ))
|
||||||
|
local name=${names[$random_index]}
|
||||||
|
echo ${emoji[$name]}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Displays a listing of emoji with their names
|
||||||
|
#
|
||||||
|
# display_emoji [group]
|
||||||
|
#
|
||||||
|
function display_emoji() {
|
||||||
|
local group=$1
|
||||||
|
local names
|
||||||
|
if [[ -z "$group" || "$group" == "all" ]]; then
|
||||||
|
names=(${(k)emoji})
|
||||||
|
else
|
||||||
|
names=(${=emoji_groups[$group]})
|
||||||
|
fi
|
||||||
|
# The extra spaces in output here are a hack for readability, since some
|
||||||
|
# terminals treat these emoji chars as single-width.
|
||||||
|
for i in $names; do
|
||||||
|
printf '%s ' "$emoji[$i]"
|
||||||
|
done
|
||||||
|
print
|
||||||
|
for i in $names; do
|
||||||
|
echo "${emoji[$i]} = $i"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
113
plugins/emoji/update_emoji.pl
Normal file
113
plugins/emoji/update_emoji.pl
Normal file
|
|
@ -0,0 +1,113 @@
|
||||||
|
#!/usr/bin/perl -w
|
||||||
|
#
|
||||||
|
# update_emoji.pl
|
||||||
|
#
|
||||||
|
# This script generates the emoji.plugin.zsh emoji definitions from the Unicode
|
||||||
|
# character data for the emoji characters.
|
||||||
|
#
|
||||||
|
# The data file can be found at http://unicode.org/Public/emoji/latest/emoji-data.txt
|
||||||
|
# as referenced in Unicode TR51 (http://www.unicode.org/reports/tr51/index.html).
|
||||||
|
#
|
||||||
|
# This is known to work with the data file from version 1.0. It may not work with later
|
||||||
|
# versions if the format changes. In particular, this reads line comments to get the
|
||||||
|
# emoji character name and unicode version.
|
||||||
|
#
|
||||||
|
# Country names have punctuation and other non-letter characters removed from their name,
|
||||||
|
# to avoid possible complications with having to escape the strings when using them as
|
||||||
|
# array subscripts. The definition file seems to use some combining characters like accents
|
||||||
|
# that get stripped during this process.
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use 5.010;
|
||||||
|
use autodie;
|
||||||
|
|
||||||
|
use Path::Class;
|
||||||
|
use File::Copy;
|
||||||
|
|
||||||
|
# Parse definitions out of the data file and convert
|
||||||
|
sub process_emoji_data_file {
|
||||||
|
my ( $infile, $outfilename ) = @_;
|
||||||
|
my $file = file($infile);
|
||||||
|
my $outfile = file($outfilename);
|
||||||
|
my $outfilebase = $outfile->basename();
|
||||||
|
my $tempfilename = "$outfilename.tmp";
|
||||||
|
my $tempfile = file($tempfilename);
|
||||||
|
my $outfh = $tempfile->openw();
|
||||||
|
$outfh->print("
|
||||||
|
# $outfilebase - Emoji character definitions for oh-my-zsh emoji plugin
|
||||||
|
#
|
||||||
|
# This file is auto-generated by update_emoji.pl. Do not edit it manually.
|
||||||
|
#
|
||||||
|
# This contains the definition for:
|
||||||
|
# \$emoji - which maps character names to Unicode characters
|
||||||
|
# \$emoji_flags - maps country names to Unicode flag characters using region indicators
|
||||||
|
|
||||||
|
# Main emoji
|
||||||
|
typeset -gAH emoji
|
||||||
|
# National flags
|
||||||
|
typeset -gAH emoji_flags
|
||||||
|
# Combining modifiers
|
||||||
|
typeset -gAH emoji_mod
|
||||||
|
|
||||||
|
");
|
||||||
|
|
||||||
|
my $fh = $file->openr();
|
||||||
|
my $line_num = 0;
|
||||||
|
while ( my $line = $fh->getline() ) {
|
||||||
|
$line_num++;
|
||||||
|
$_ = $line;
|
||||||
|
# Skip all-comment lines (from the header) and blank lines
|
||||||
|
# (But don't strip comments on normal lines; we need to parse those for
|
||||||
|
# the emoji names.)
|
||||||
|
next if /^\s*#/ or /^\s*$/;
|
||||||
|
|
||||||
|
if (/^(\S.*?\S)\s*;\s*(\w+)\s*;\s*(\w+)\s*;\s*(\w+)\s*;\s*(\w.*?)\s*#\s*V(\S+)\s\(.*?\)\s*(\w.*\S)\s*$/) {
|
||||||
|
my ($code, $style, $level, $modifier_status, $sources, $version, $keycap_name)
|
||||||
|
= ($1, $2, $3, $4, $5, $6, $7);
|
||||||
|
#print "code=$code style=$style level=$level modifier_status=$modifier_status sources=$sources version=$version name=$keycap_name\n";
|
||||||
|
my @code_points = split /\s+/, $code;
|
||||||
|
my @sources = split /\s+/, $sources;
|
||||||
|
|
||||||
|
my $flag_country = "";
|
||||||
|
if ( $keycap_name =~ /^flag for (\S.*?)\s*$/) {
|
||||||
|
$flag_country = $1;
|
||||||
|
}
|
||||||
|
|
||||||
|
my $zsh_code = join '', map { "\\U$_" } @code_points;
|
||||||
|
# Convert keycap names to valid associative array names that do not require any
|
||||||
|
# quoting. Works fine for most stuff, but is clumsy for flags.
|
||||||
|
my $omz_name = lc($keycap_name);
|
||||||
|
$omz_name =~ s/[^A-Za-z0-9]/_/g;
|
||||||
|
my $zsh_flag_country = $flag_country;
|
||||||
|
$zsh_flag_country =~ s/[^\p{Letter}]/_/g;
|
||||||
|
if ($flag_country) {
|
||||||
|
$outfh->print("emoji_flags[$zsh_flag_country]=\$'$zsh_code'\n");
|
||||||
|
} else {
|
||||||
|
$outfh->print("emoji[$omz_name]=\$'$zsh_code'\n");
|
||||||
|
}
|
||||||
|
# Modifiers are included in both the main set and their separate map,
|
||||||
|
# because they have a standalone representation as a color swatch.
|
||||||
|
if ( $modifier_status == "modifier" ) {
|
||||||
|
$outfh->print("emoji_mod[$omz_name]=\$'$zsh_code'\n");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
die "Failed parsing line $line_num: '$_'";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$fh->close();
|
||||||
|
$outfh->print("\n");
|
||||||
|
$outfh->close();
|
||||||
|
|
||||||
|
move($tempfilename, $outfilename)
|
||||||
|
or die "Failed moving temp file to $outfilename: $!";
|
||||||
|
}
|
||||||
|
|
||||||
|
my $datafile = "emoji-data.txt";
|
||||||
|
my $zsh_def_file = "emoji-char-definitions.zsh";
|
||||||
|
process_emoji_data_file($datafile, $zsh_def_file);
|
||||||
|
|
||||||
|
print "Updated definition file $zsh_def_file\n";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@ if [ $commands[fasd] ]; then # check if fasd is installed
|
||||||
fi
|
fi
|
||||||
source "$fasd_cache"
|
source "$fasd_cache"
|
||||||
unset fasd_cache
|
unset fasd_cache
|
||||||
alias v='f -e vim'
|
|
||||||
alias o='a -e open'
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
alias v='f -e vim'
|
||||||
|
alias o='a -e open_command'
|
||||||
|
fi
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
# start fbterm automatically in /dev/tty*
|
# start fbterm automatically in /dev/tty*
|
||||||
|
|
||||||
if [[ $(tty|grep -o '/dev/tty') = /dev/tty ]] ; then
|
if (( ${+commands[fbterm]} )); then
|
||||||
fbterm
|
if [[ "$TTY" = /dev/tty* ]] ; then
|
||||||
exit
|
fbterm && exit
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,6 @@
|
||||||
|
|
||||||
function frontend() {
|
function frontend() {
|
||||||
|
|
||||||
# get the open command
|
|
||||||
local open_cmd
|
|
||||||
if [[ $(uname -s) == 'Darwin' ]]; then
|
|
||||||
open_cmd='open'
|
|
||||||
else
|
|
||||||
open_cmd='xdg-open'
|
|
||||||
fi
|
|
||||||
|
|
||||||
# no keyword provided, simply show how call methods
|
# no keyword provided, simply show how call methods
|
||||||
if [[ $# -le 1 ]]; then
|
if [[ $# -le 1 ]]; then
|
||||||
echo "Please provide a search-content and a search-term for app.\nEx:\nfrontend <search-content> <search-term>\n"
|
echo "Please provide a search-content and a search-term for app.\nEx:\nfrontend <search-content> <search-term>\n"
|
||||||
|
|
@ -113,7 +105,7 @@ function frontend() {
|
||||||
|
|
||||||
echo "$url"
|
echo "$url"
|
||||||
|
|
||||||
$open_cmd "$url"
|
open_command "$url"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,13 +11,6 @@
|
||||||
# Usage: jira # opens a new issue
|
# Usage: jira # opens a new issue
|
||||||
# jira ABC-123 # Opens an existing issue
|
# jira ABC-123 # Opens an existing issue
|
||||||
open_jira_issue () {
|
open_jira_issue () {
|
||||||
local open_cmd
|
|
||||||
if [[ "$OSTYPE" = darwin* ]]; then
|
|
||||||
open_cmd='open'
|
|
||||||
else
|
|
||||||
open_cmd='xdg-open'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f .jira-url ]; then
|
if [ -f .jira-url ]; then
|
||||||
jira_url=$(cat .jira-url)
|
jira_url=$(cat .jira-url)
|
||||||
elif [ -f ~/.jira-url ]; then
|
elif [ -f ~/.jira-url ]; then
|
||||||
|
|
@ -39,7 +32,7 @@ open_jira_issue () {
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
echo "Opening new issue"
|
echo "Opening new issue"
|
||||||
$open_cmd "${jira_url}/secure/CreateIssue!default.jspa"
|
open_command "${jira_url}/secure/CreateIssue!default.jspa"
|
||||||
elif [[ "$1" = "assigned" || "$1" = "reported" ]]; then
|
elif [[ "$1" = "assigned" || "$1" = "reported" ]]; then
|
||||||
jira_query $@
|
jira_query $@
|
||||||
else
|
else
|
||||||
|
|
@ -52,9 +45,9 @@ open_jira_issue () {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "x$JIRA_RAPID_BOARD" = "xtrue" ]]; then
|
if [[ "x$JIRA_RAPID_BOARD" = "xtrue" ]]; then
|
||||||
$open_cmd "$jira_url/issues/$jira_prefix$1$addcomment"
|
open_command "$jira_url/issues/$jira_prefix$1$addcomment"
|
||||||
else
|
else
|
||||||
$open_cmd "$jira_url/browse/$jira_prefix$1$addcomment"
|
open_command "$jira_url/browse/$jira_prefix$1$addcomment"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
@ -90,7 +83,7 @@ jira_query () {
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
echo "Browsing issues ${verb} ${preposition} ${jira_name}"
|
echo "Browsing issues ${verb} ${preposition} ${jira_name}"
|
||||||
$open_cmd "${jira_url}/secure/IssueNavigator.jspa?reset=true&jqlQuery=${lookup}+%3D+%22${jira_name}%22+AND+resolution+%3D+unresolved+ORDER+BY+priority+DESC%2C+created+ASC"
|
open_command "${jira_url}/secure/IssueNavigator.jspa?reset=true&jqlQuery=${lookup}+%3D+%22${jira_name}%22+AND+resolution+%3D+unresolved+ORDER+BY+priority+DESC%2C+created+ASC"
|
||||||
}
|
}
|
||||||
|
|
||||||
alias jira='open_jira_issue'
|
alias jira='open_jira_issue'
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,8 @@ mkdir -p $ZSH_CACHE_DIR
|
||||||
cache_file="$ZSH_CACHE_DIR/last-working-dir"
|
cache_file="$ZSH_CACHE_DIR/last-working-dir"
|
||||||
|
|
||||||
# Updates the last directory once directory is changed.
|
# Updates the last directory once directory is changed.
|
||||||
function chpwd() {
|
chpwd_functions+=(chpwd_last_working_dir)
|
||||||
|
function chpwd_last_working_dir() {
|
||||||
# Use >| in case noclobber is set to avoid "file exists" error
|
# Use >| in case noclobber is set to avoid "file exists" error
|
||||||
pwd >| "$cache_file"
|
pwd >| "$cache_file"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ open_lighthouse_ticket () {
|
||||||
else
|
else
|
||||||
lighthouse_url=$(cat .lighthouse-url);
|
lighthouse_url=$(cat .lighthouse-url);
|
||||||
echo "Opening ticket #$1";
|
echo "Opening ticket #$1";
|
||||||
`open $lighthouse_url/tickets/$1`;
|
open_command "$lighthouse_url/tickets/$1";
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
34
plugins/n98-magerun/n98-magerun.plugin.zsh
Executable file
34
plugins/n98-magerun/n98-magerun.plugin.zsh
Executable file
|
|
@ -0,0 +1,34 @@
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# FILE: n98-magerun.plugin.zsh
|
||||||
|
# DESCRIPTION: oh-my-zsh n98-magerun plugin file. Adapted from composer plugin
|
||||||
|
# AUTHOR: Andrew Dwyer (andrewrdwyer at gmail dot com)
|
||||||
|
# VERSION: 1.0.0
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# n98-magerun basic command completion
|
||||||
|
_n98_magerun_get_command_list () {
|
||||||
|
$_comp_command1 --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z\-:]+/ { print $1 }'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
_n98_magerun () {
|
||||||
|
_arguments '1: :->command' '*:optional arg:_files'
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
command)
|
||||||
|
compadd $(_n98_magerun_get_command_list)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
compdef _n98_magerun n98-magerun.phar
|
||||||
|
compdef _n98_magerun n98-magerun
|
||||||
|
|
||||||
|
# Aliases
|
||||||
|
alias n98='n98-magerun.phar'
|
||||||
|
alias mage='n98-magerun.phar'
|
||||||
|
alias magefl='n98-magerun.phar cache:flush'
|
||||||
|
|
||||||
|
# Install n98-magerun into the current directory
|
||||||
|
alias mage-get='wget https://raw.github.com/netz98/n98-magerun/master/n98-magerun.phar'
|
||||||
|
|
@ -1,13 +1,5 @@
|
||||||
# Open the node api for your current version to the optional section.
|
# Open the node api for your current version to the optional section.
|
||||||
# TODO: Make the section part easier to use.
|
# TODO: Make the section part easier to use.
|
||||||
function node-docs {
|
function node-docs {
|
||||||
# get the open command
|
open_command "http://nodejs.org/docs/$(node --version)/api/all.html#all_$1"
|
||||||
local open_cmd
|
|
||||||
if [[ "$OSTYPE" = darwin* ]]; then
|
|
||||||
open_cmd='open'
|
|
||||||
else
|
|
||||||
open_cmd='xdg-open'
|
|
||||||
fi
|
|
||||||
|
|
||||||
$open_cmd "http://nodejs.org/docs/$(node --version)/api/all.html#all_$1"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,12 @@
|
||||||
user_commands=(
|
user_commands=(
|
||||||
list-units is-active status show help list-unit-files
|
list-units is-active status show help list-unit-files
|
||||||
is-enabled list-jobs show-environment)
|
is-enabled list-jobs show-environment cat)
|
||||||
|
|
||||||
sudo_commands=(
|
sudo_commands=(
|
||||||
start stop reload restart try-restart isolate kill
|
start stop reload restart try-restart isolate kill
|
||||||
reset-failed enable disable reenable preset mask unmask
|
reset-failed enable disable reenable preset mask unmask
|
||||||
link load cancel set-environment unset-environment)
|
link load cancel set-environment unset-environment
|
||||||
|
edit)
|
||||||
|
|
||||||
for c in $user_commands; do; alias sc-$c="systemctl $c"; done
|
for c in $user_commands; do; alias sc-$c="systemctl $c"; done
|
||||||
for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done
|
for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done
|
||||||
|
|
|
||||||
11
plugins/terraform/README.md
Normal file
11
plugins/terraform/README.md
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
## atom
|
||||||
|
|
||||||
|
Plugin for Terraform, a tool from Hashicorp for managing infrastructure safely and efficiently.
|
||||||
|
|
||||||
|
### Requirements
|
||||||
|
|
||||||
|
* [Terraform](https://terraform.io/)
|
||||||
|
|
||||||
|
### Usage
|
||||||
|
|
||||||
|
* Type `terraform` into your prompt and hit `TAB` to see available completion options
|
||||||
177
plugins/terraform/_terraform
Normal file
177
plugins/terraform/_terraform
Normal file
|
|
@ -0,0 +1,177 @@
|
||||||
|
#compdef terraform
|
||||||
|
|
||||||
|
local -a _terraform_cmds
|
||||||
|
_terraform_cmds=(
|
||||||
|
'apply:Builds or changes infrastructure'
|
||||||
|
'destroy:Destroy Terraform-managed infrastructure'
|
||||||
|
'get:Download and install modules for the configuration'
|
||||||
|
'graph:Create a visual graph of Terraform resources'
|
||||||
|
'init:Initializes Terraform configuration from a module'
|
||||||
|
'output:Read an output from a state file'
|
||||||
|
'plan:Generate and show an execution plan'
|
||||||
|
'pull:Refreshes the local state copy from the remote server'
|
||||||
|
'push:Uploads the local state to the remote server'
|
||||||
|
'refresh:Update local state file against real resources'
|
||||||
|
'remote:Configures remote state management'
|
||||||
|
'show:Inspect Terraform state or plan'
|
||||||
|
'taint:Manually forcing a destroy and recreate on the next plan/apply'
|
||||||
|
'version:Prints the Terraform version'
|
||||||
|
)
|
||||||
|
|
||||||
|
__apply() {
|
||||||
|
_arguments \
|
||||||
|
'-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \
|
||||||
|
'-input=[(true) Ask for input for variables if not directly set.]' \
|
||||||
|
'-no-color[If specified, output will not contain any color.]' \
|
||||||
|
'-refresh=[(true) Update state prior to checking for differences. This has no effect if a plan file is given to apply.]' \
|
||||||
|
'-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' \
|
||||||
|
'-state-out=[(path) Path to write state to that is different than "-state". This can be used to preserve the old state.]' \
|
||||||
|
'-target=[(resource) A Resource Address to target. Operation will be limited to this resource and its dependencies. This flag can be used multiple times.]' \
|
||||||
|
'-var[("foo=bar") Set a variable in the Terraform configuration. This flag can be set multiple times.]' \
|
||||||
|
'-var-file=[(path) Set variables in the Terraform configuration from a file. If "terraform.tfvars" is present, it will be automatically loaded if this flag is not specified.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__destroy() {
|
||||||
|
_arguments \
|
||||||
|
'-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \
|
||||||
|
'-force[If set, then the destroy confirmation will not be shown.]' \
|
||||||
|
'-input=[(true) Ask for input for variables if not directly set.]' \
|
||||||
|
'-no-color[If specified, output will not contain any color.]' \
|
||||||
|
'-refresh=[(true) Update state prior to checking for differences. This has no effect if a plan file is given to apply.]' \
|
||||||
|
'-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' \
|
||||||
|
'-state-out=[(path) Path to write state to that is different than "-state". This can be used to preserve the old state.]' \
|
||||||
|
'-target=[(resource) Instead of affecting "dependencies" will instead also destroy any resources that depend on the target(s) specified.]' \
|
||||||
|
'-var[("foo=bar") Set a variable in the Terraform configuration. This flag can be set multiple times.]' \
|
||||||
|
'-var-file=[(path) Set variables in the Terraform configuration from a file. If "terraform.tfvars" is present, it will be automatically loaded if this flag is not specified.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__get() {
|
||||||
|
_arguments \
|
||||||
|
'-update=[(false) If true, modules already downloaded will be checked for updates and updated if necessary.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__graph() {
|
||||||
|
_arguments \
|
||||||
|
'-draw-cycles[Highlight any cycles in the graph with colored edges. This helps when diagnosing cycle errors.]' \
|
||||||
|
'-module-depth=[(n) The maximum depth to expand modules. By default this is zero, which will not expand modules at all.]' \
|
||||||
|
'-verbose[Generate a verbose, "worst-case" graph, with all nodes for potential operations in place.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__init() {
|
||||||
|
_arguments \
|
||||||
|
'-address=[(url) URL of the remote storage server. Required for HTTP backend, optional for Atlas and Consul.]' \
|
||||||
|
'-access-token=[(token) Authentication token for state storage server. Required for Atlas backend, optional for Consul.]' \
|
||||||
|
'-backend=[(atlas) Specifies the type of remote backend. Must be one of Atlas, Consul, or HTTP. Defaults to atlas.]' \
|
||||||
|
'-name=[(name) Name of the state file in the state storage server. Required for Atlas backend.]' \
|
||||||
|
'-path=[(path) Path of the remote state in Consul. Required for the Consul backend.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__output() {
|
||||||
|
_arguments \
|
||||||
|
'-state=[(path) Path to the state file to read. Defaults to "terraform.tfstate".]' \
|
||||||
|
'-module=[(module_name) The module path which has needed output. By default this is the root path. Other modules can be specified by a period-separated list.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__plan() {
|
||||||
|
_arguments \
|
||||||
|
'-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with" .backup" extension. Set to "-" to disable backup.]' \
|
||||||
|
'-destroy[If set, a plan will be generated to destroy all resources managed by the given configuration and state.]' \
|
||||||
|
'-detailed-exitcode[Return a detailed exit code when the command exits. When provided, this argument changes the exit codes and their meanings to provide more granular information about what the resulting plan contains]' \
|
||||||
|
'-input=[(true) Ask for input for variables if not directly set.]' \
|
||||||
|
'-module-depth=[(n) Specifies the depth of modules to show in the output. This does not affect the plan itself, only the output shown. By default, this is zero. -1 will expand all.]' \
|
||||||
|
'-no-color[If specified, output will not contain any color.]' \
|
||||||
|
'-out=[(path) Write a plan file to the given path. This can be used as input to the "apply" command.]' \
|
||||||
|
'-refresh=[(true) Update state prior to checking for differences.]' \
|
||||||
|
'-state=[(statefile) Path to a Terraform state file to use to look up Terraform-managed resources. By default it will use the state "terraform.tfstate" if it exists.]' \
|
||||||
|
'-target=[(resource) A Resource Address to target. Operation will be limited to this resource and its dependencies. This flag can be used multiple times.]' \
|
||||||
|
'-var[("foo=bar") Set a variable in the Terraform configuration. This flag can be set multiple times.]' \
|
||||||
|
'-var-file=[(path) Set variables in the Terraform configuration from a file. If "terraform.tfvars" is present, it will be automatically loaded if this flag is not specified.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__push() {
|
||||||
|
_arguments \
|
||||||
|
'-atlas-address=[(url) An alternate address to an Atlas instance. Defaults to https://atlas.hashicorp.com.]' \
|
||||||
|
'-upload-modules=[(true) If true (default), then the modules being used are all locked at their current checkout and uploaded completely to Atlas. This prevents Atlas from running terraform get for you.]' \
|
||||||
|
'-name=[(name) Name of the infrastructure configuration in Atlas. The format of this is: "username/name" so that you can upload configurations not just to your account but to other accounts and organizations. This setting can also be set in the configuration in the Atlas section.]' \
|
||||||
|
'-no-color[Disables output with coloring]' \
|
||||||
|
'-overwrite=[(foo) Marks a specific variable to be updated on Atlas. Normally, if a variable is already set in Atlas, Terraform will not send the local value (even if it is different). This forces it to send the local value to Atlas. This flag can be repeated multiple times.]' \
|
||||||
|
'-token=[(token) Atlas API token to use to authorize the upload. If blank or unspecified, the ATLAS_TOKEN environmental variable will be used.]' \
|
||||||
|
'-var=[("foo=bar") Set the value of a variable for the Terraform configuration.]' \
|
||||||
|
'-var-file=[(foo) Set the value of variables using a variable file.]' \
|
||||||
|
'-vcs=[(true) If true (default), then Terraform will detect if a VCS is in use, such as Git, and will only upload files that are comitted to version control. If no version control system is detected, Terraform will upload all files in path (parameter to the command).]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__refresh() {
|
||||||
|
_arguments \
|
||||||
|
'-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \
|
||||||
|
'-no-color[If specified, output will not contain any color.]' \
|
||||||
|
'-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' \
|
||||||
|
'-state-out=[(path) Path to write state to that is different than "-state". This can be used to preserve the old state.]' \
|
||||||
|
'-target=[(resource) A Resource Address to target. Operation will be limited to this resource and its dependencies. This flag can be used multiple times.]' \
|
||||||
|
'-var[("foo=bar") Set a variable in the Terraform configuration. This flag can be set multiple times.]' \
|
||||||
|
'-var-file=[(path) Set variables in the Terraform configuration from a file. If "terraform.tfvars" is present, it will be automatically loaded if this flag is not specified.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__remote() {
|
||||||
|
_arguments \
|
||||||
|
'-address=[(url) URL of the remote storage server. Required for HTTP backend, optional for Atlas and Consul.]' \
|
||||||
|
'-access-token=[(token) Authentication token for state storage server. Required for Atlas backend, optional for Consul.]' \
|
||||||
|
'-backend=[(atlas) Specifies the type of remote backend. Must be one of Atlas, Consul, or HTTP. Defaults to atlas.]' \
|
||||||
|
'-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \
|
||||||
|
'-disable[Disables remote state management and migrates the state to the -state path.]' \
|
||||||
|
'-name=[(name) Name of the state file in the state storage server. Required for Atlas backend.]' \
|
||||||
|
'-path=[(path) Path of the remote state in Consul. Required for the Consul backend.]' \
|
||||||
|
'-pull=[(true) Controls if the remote state is pulled before disabling. This defaults to true to ensure the latest state is cached before disabling.]' \
|
||||||
|
'-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__show() {
|
||||||
|
_arguments \
|
||||||
|
'-module-depth=[(n) The maximum depth to expand modules. By default this is zero, which will not expand modules at all.]' \
|
||||||
|
'-no-color[If specified, output will not contain any color.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
__taint() {
|
||||||
|
_arguments \
|
||||||
|
'-allow-missing[If specified, the command will succeed (exit code 0) even if the resource is missing.]' \
|
||||||
|
'-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \
|
||||||
|
'-module=[(path) The module path where the resource lives. By default this will be root. Child modules can be specified by names. Ex. "consul" or "consul.vpc" (nested modules).]' \
|
||||||
|
'-no-color[If specified, output will not contain any color.]' \
|
||||||
|
'-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' \
|
||||||
|
'-state-out=[(path) Path to write updated state file. By default, the "-state" path will be used.]'
|
||||||
|
}
|
||||||
|
|
||||||
|
_arguments '*:: :->command'
|
||||||
|
|
||||||
|
if (( CURRENT == 1 )); then
|
||||||
|
_describe -t commands "terraform command" _terraform_cmds
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
local -a _command_args
|
||||||
|
case "$words[1]" in
|
||||||
|
apply)
|
||||||
|
__apply ;;
|
||||||
|
destroy)
|
||||||
|
__destroy ;;
|
||||||
|
get)
|
||||||
|
__get ;;
|
||||||
|
graph)
|
||||||
|
__graph ;;
|
||||||
|
init)
|
||||||
|
__init ;;
|
||||||
|
output)
|
||||||
|
__output ;;
|
||||||
|
plan)
|
||||||
|
__plan ;;
|
||||||
|
push)
|
||||||
|
__push ;;
|
||||||
|
refresh)
|
||||||
|
__refresh ;;
|
||||||
|
remote)
|
||||||
|
__remote ;;
|
||||||
|
show)
|
||||||
|
__show ;;
|
||||||
|
taint)
|
||||||
|
__taint ;;
|
||||||
|
esac
|
||||||
|
|
@ -38,7 +38,7 @@ if [[ ! $DISABLE_VENV_CD -eq 1 ]]; then
|
||||||
local WORKON_CWD=1
|
local WORKON_CWD=1
|
||||||
# Check if this is a Git repo
|
# Check if this is a Git repo
|
||||||
local GIT_REPO_ROOT=""
|
local GIT_REPO_ROOT=""
|
||||||
local GIT_TOPLEVEL=$(git rev-parse --show-toplevel 2> /dev/null)
|
local GIT_TOPLEVEL="$(git rev-parse --show-toplevel 2> /dev/null)"
|
||||||
if [[ $? == 0 ]]; then
|
if [[ $? == 0 ]]; then
|
||||||
GIT_REPO_ROOT="$GIT_TOPLEVEL"
|
GIT_REPO_ROOT="$GIT_TOPLEVEL"
|
||||||
fi
|
fi
|
||||||
|
|
@ -53,7 +53,7 @@ if [[ ! $DISABLE_VENV_CD -eq 1 ]]; then
|
||||||
fi
|
fi
|
||||||
# Check for virtualenv name override
|
# Check for virtualenv name override
|
||||||
if [[ -f "$PROJECT_ROOT/.venv" ]]; then
|
if [[ -f "$PROJECT_ROOT/.venv" ]]; then
|
||||||
ENV_NAME=`cat "$PROJECT_ROOT/.venv"`
|
ENV_NAME="$(cat "$PROJECT_ROOT/.venv")"
|
||||||
elif [[ -f "$PROJECT_ROOT/.venv/bin/activate" ]];then
|
elif [[ -f "$PROJECT_ROOT/.venv/bin/activate" ]];then
|
||||||
ENV_NAME="$PROJECT_ROOT/.venv"
|
ENV_NAME="$PROJECT_ROOT/.venv"
|
||||||
elif [[ "$PROJECT_ROOT" != "." ]]; then
|
elif [[ "$PROJECT_ROOT" != "." ]]; then
|
||||||
|
|
|
||||||
|
|
@ -13,15 +13,15 @@ function vundle-init () {
|
||||||
|
|
||||||
function vundle () {
|
function vundle () {
|
||||||
vundle-init
|
vundle-init
|
||||||
vim -c "execute \"PluginInstall\" | q | q"
|
vim -c "execute \"PluginInstall\" | qa"
|
||||||
}
|
}
|
||||||
|
|
||||||
function vundle-update () {
|
function vundle-update () {
|
||||||
vundle-init
|
vundle-init
|
||||||
vim -c "execute \"PluginInstall!\" | q | q"
|
vim -c "execute \"PluginInstall!\" | qa"
|
||||||
}
|
}
|
||||||
|
|
||||||
function vundle-clean () {
|
function vundle-clean () {
|
||||||
vundle-init
|
vundle-init
|
||||||
vim -c "execute \"PluginClean!\" | q | q"
|
vim -c "execute \"PluginClean!\" | qa"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,18 +12,9 @@ function web_search() {
|
||||||
duckduckgo "https://www.duckduckgo.com/?q="
|
duckduckgo "https://www.duckduckgo.com/?q="
|
||||||
yandex "https://yandex.ru/yandsearch?text="
|
yandex "https://yandex.ru/yandsearch?text="
|
||||||
github "https://github.com/search?q="
|
github "https://github.com/search?q="
|
||||||
|
baidu "https://www.baidu.com/s?wd="
|
||||||
)
|
)
|
||||||
|
|
||||||
# define the open command
|
|
||||||
case "$OSTYPE" in
|
|
||||||
darwin*) open_cmd="open" ;;
|
|
||||||
cygwin*) open_cmd="cygstart" ;;
|
|
||||||
linux*) open_cmd="xdg-open" ;;
|
|
||||||
*) echo "Platform $OSTYPE not supported"
|
|
||||||
return 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# check whether the search engine is supported
|
# check whether the search engine is supported
|
||||||
if [[ -z "$urls[$1]" ]]; then
|
if [[ -z "$urls[$1]" ]]; then
|
||||||
echo "Search engine $1 not supported."
|
echo "Search engine $1 not supported."
|
||||||
|
|
@ -41,7 +32,7 @@ function web_search() {
|
||||||
url="${(j://:)${(s:/:)urls[$1]}[1,2]}"
|
url="${(j://:)${(s:/:)urls[$1]}[1,2]}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
nohup $open_cmd "$url" &>/dev/null
|
open_command "$url"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -51,6 +42,7 @@ alias yahoo='web_search yahoo'
|
||||||
alias ddg='web_search duckduckgo'
|
alias ddg='web_search duckduckgo'
|
||||||
alias yandex='web_search yandex'
|
alias yandex='web_search yandex'
|
||||||
alias github='web_search github'
|
alias github='web_search github'
|
||||||
|
alias baidu='web_search baidu'
|
||||||
|
|
||||||
#add your own !bang searches here
|
#add your own !bang searches here
|
||||||
alias wiki='web_search duckduckgo \!w'
|
alias wiki='web_search duckduckgo \!w'
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset
|
||||||
}
|
}
|
||||||
|
|
||||||
function box_name {
|
function box_name {
|
||||||
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-HOST}
|
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST}
|
||||||
}
|
}
|
||||||
|
|
||||||
PROMPT='
|
PROMPT='
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ function prompt_char {
|
||||||
}
|
}
|
||||||
|
|
||||||
function box_name {
|
function box_name {
|
||||||
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-HOST}
|
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ function prompt_char {
|
||||||
}
|
}
|
||||||
|
|
||||||
function box_name {
|
function box_name {
|
||||||
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-HOST}
|
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST}
|
||||||
}
|
}
|
||||||
|
|
||||||
local ruby_env=''
|
local ruby_env=''
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue