chezmoi init

This commit is contained in:
Cy Pokhrel 2024-10-22 11:11:45 -04:00
commit 530d6d7195
No known key found for this signature in database
GPG key ID: 1200FBE36C2ADE2E
1176 changed files with 111325 additions and 0 deletions

View file

@ -0,0 +1,35 @@
# rake-fast
Fast rake autocompletion plugin.
This plugin caches the output for later usage and significantly speeds it up.
It generates a `.rake_tasks` cache file in parallel to the Rakefile. It also
checks the file modification time to see if it needs to regenerate the cache
file.
This is entirely based on [this pull request by Ullrich Schäfer](https://github.com/robb/.dotfiles/pull/10/),
which is inspired by [this Ruby on Rails trick from 2006](https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh/).
Think about that. 2006.
----------
Since August of 2016, it also checks if it's in a Rails project and looks at
rake files inside `lib/tasks` and their modification time to know if the
cache file needs to be regenerated.
## Installation
Just add the plugin to your `.zshrc`:
```zsh
plugins=(... rake-fast)
```
You might consider adding `.rake_tasks` to your [global .gitignore](https://help.github.com/articles/ignoring-files#global-gitignore)
## Usage
Type `rake`, then press tab.
If you want to force the regeneration of the `.rake_tasks` file, run `rake_refresh`.

View file

@ -0,0 +1,79 @@
# The version of the format of .rake_tasks. If the output of _rake_generate
# changes, incrementing this number will force it to regenerate
_rake_tasks_version=2
_rake_does_task_list_need_generating () {
_rake_tasks_missing || _rake_tasks_version_changed || _rakefile_has_changes || { _is_rails_app && _tasks_changed }
}
_rake_tasks_missing () {
[[ ! -f .rake_tasks ]]
}
_rake_tasks_version_changed () {
local -a file_version
file_version=`head -n 1 .rake_tasks | sed "s/^version\://"`
if ! [[ $file_version =~ '^[0-9]*$' ]]; then
return true
fi
[[ $file_version -ne $_rake_tasks_version ]]
}
_rakefile_has_changes () {
[[ Rakefile -nt .rake_tasks ]]
}
_is_rails_app () {
[[ -e "bin/rails" ]] || [[ -e "script/rails" ]]
}
_tasks_changed () {
local -a files
files=(lib/tasks lib/tasks/**/*(N))
for file in $files; do
if [[ "$file" -nt .rake_tasks ]]; then
return 0
fi
done
return 1
}
_rake_generate () {
local rake_tasks_content="version:$_rake_tasks_version\n"
rake_tasks_content+=$(rake --silent --tasks --all \
| sed "s/^rake //" | sed "s/\:/\\\:/g" \
| sed "s/\[[^]]*\]//g" \
| sed "s/ *# /\:/" \
| sed "s/\:$//")
local rake_tasks_file="$(mktemp -t .rake_tasks.XXXXXX)"
echo $rake_tasks_content > $rake_tasks_file
mv $rake_tasks_file .rake_tasks
}
_rake () {
if [[ -f Rakefile ]]; then
if _rake_does_task_list_need_generating; then
echo "\nGenerating .rake_tasks..." >&2
_rake_generate
fi
local -a rake_options
rake_options=("${(@f)$(cat .rake_tasks)}")
shift rake_options
_describe 'rake tasks' rake_options
fi
}
compdef _rake rake
rake_refresh () {
[[ -f .rake_tasks ]] && rm -f .rake_tasks
echo "Generating .rake_tasks..." >&2
_rake_generate
cat .rake_tasks
}