mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-10-30 04:39:08 +00:00 
			
		
		
		
	Simplify Git submodule ignore settings
This commit is contained in:
		| @@ -58,11 +58,8 @@ | ||||
| #     # Right prompt. | ||||
| #     zstyle ':omz:module:git' rprompt '' | ||||
| # | ||||
| #     # Ignore submodule. | ||||
| #     zstyle ':omz:module:git:ignore' submodule 'no' | ||||
| # | ||||
| #     # Ignore submodule when it is 'dirty', 'untracked', 'all', or 'none'. | ||||
| #     zstyle ':omz:module:git:ignore:submodule' when 'all' | ||||
| #     zstyle ':omz:module:git:ignore' submodule '' | ||||
| # | ||||
|  | ||||
| # Gets the path to the Git directory. | ||||
| @@ -197,7 +194,6 @@ function git-info { | ||||
|   local dirty_format | ||||
|   local dirty_formatted | ||||
|   local ignore_submodule | ||||
|   local ignore_submodule_when | ||||
|   local line_number=0 | ||||
|   local modified=0 | ||||
|   local modified_format | ||||
| @@ -265,12 +261,9 @@ function git-info { | ||||
|   ahead_and_behind_cmd='git rev-list --count --left-right HEAD...@{upstream}' | ||||
|  | ||||
|   # Ignore submodule status. | ||||
|   zstyle -b \ | ||||
|     ':omz:module:git:ignore' submodule 'ignore_submodule' | ||||
|   zstyle -s \ | ||||
|     ':omz:module:git:ignore:submodule' when 'ignore_submodule_when' | ||||
|   if is-true "$ignore_submodule"; then | ||||
|     status_cmd+=" --ignore-submodules=${ignore_submodule_when:-all}" | ||||
|   zstyle -s ':omz:module:git:ignore' submodule 'ignore_submodule' | ||||
|   if [[ -n "$ignore_submodule" ]]; then | ||||
|     status_cmd+=" --ignore-submodules=${ignore_submodule}" | ||||
|   fi | ||||
|  | ||||
|   # Format commit. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user