Coder Social home page Coder Social logo

Comments (7)

babarot avatar babarot commented on September 26, 2024

Hi @leomao

In order to solve this problem, I will suggest you to introduce new tag called nice:.

By using the nice tag, the zplug user can set the priority of the loading order of the plugins.

Priority levels of nice range from -20 (highest) to 19 (lowest) and defaults to 0. In addition, the plugins are loaded after running compinit command when the nice tag is 10 or larger.

# Make sure you use double quotes
zplug "zsh-users/zsh-history-substring-search"
# zplug ...  more plugins

# will run compinit -d "${ZPLUG_HOME}/zcompdump" at this line

zplug "zsh-users/zsh-syntax-highlighting", nice:19

zplug load # will load plugins in the order of nice tag

Would you let me know what you think about it?

from zplug.

babarot avatar babarot commented on September 26, 2024

Images:

2015-12-07 11 32 04

2015-12-07 11 32 33

from zplug.

babarot avatar babarot commented on September 26, 2024

If you looks good, I will continue to develop in this branch.

from zplug.

leomao avatar leomao commented on September 26, 2024

Sounds good to me. 👍

from zplug.

babarot avatar babarot commented on September 26, 2024

What a relief! Thanks.

from zplug.

babarot avatar babarot commented on September 26, 2024

The problem was solved. Please update zplug!

from zplug.

leomao avatar leomao commented on September 26, 2024

Hi,
I am not sure whether I understood this mechanism correctly or not.

zplug A, nice:-20
zplug B, nice:-10
zplug C

The order will be A -> B -> C ?
It seems that the order is C -> B -> A actually.

I think this is caused by for key in ${${(on)nices}#*:}, since the numeric sort of zsh doesn't recognize minus sign as a part of number.

arr=(1 -1 0 2 -2)
echo ${(on)arr} # 0 1 -1 2 -2

Changing it to for key in ${${(OnM)nices:#-*}#*:} ${${(on)nices:#-*}#*:} will work.

from zplug.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.