File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -21,24 +21,14 @@ local function get_friendly_plugin_path(plugin_name)
2121 end
2222 local scm_appended_plugin_path = PluginTable .plugins [scm_appended ]
2323
24- if
25- not (
26- norm_plugin_path
27- or nvim_appended_plugin_path
28- or nvim_removed_plugin_path
29- or scm_appended_plugin_path
30- )
31- then
24+ if not (norm_plugin_path or nvim_appended_plugin_path or nvim_removed_plugin_path or scm_appended_plugin_path ) then
3225 return nil
3326 end
3427
3528 if
3629 not (
3730 Util .xor (
38- Util .xor (
39- Util .xor (norm_plugin_path , nvim_appended_plugin_path ),
40- nvim_removed_plugin_path
41- ),
31+ Util .xor (Util .xor (norm_plugin_path , nvim_appended_plugin_path ), nvim_removed_plugin_path ),
4232 scm_appended_plugin_path
4333 )
4434 )
You can’t perform that action at this time.
0 commit comments