Does requires
imply after
?
#1124
Unanswered
greyhound-003
asked this question in
Q&A
Replies: 1 comment
-
FYI: I never use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
(Note this is a re-post. GitHub auto-flagged previous discussion as possible spam - friendly platform...)
Having read, the docs and #810 the relation between
requires
andafter
is still not clear to me.It seems,
requires
is for plugin installation and automatic removal (if not used anymore) andafter
determines the load order.Does that mean, in most cases I need to specify both for proper sequencing?
Example:
Intuitively, it should be clear all child dependencies need to be installed and loaded each time, before
hrsh7th/nvim-cmp
is installed/loaded. I rarely have seen someone making use ofafter
.So: Do I need to add
after
expressions here as well?Beta Was this translation helpful? Give feedback.
All reactions