wslusc: Target exceeds 260 character limit for shortcut when using '-i' argument #227
-
Background Information:
Describe the bug Also the custom icon is not being applied, the generix "X" icon (wsl-gui.ico) is used BAD (with icon)
GOOD (without icon)
NB.: The derived limitation for the length of the username is thus now 13 characters, if using a longer username then it will always fail unconditionally To Reproduce Expected behavior Additional context
did not result in that icon being used, in stead the wsl-term.ico icon was used Why the "-i" argument is added I do not understand, as man emacs have no reference for that flag... |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
so you should not place
every parameter should be passed before the command, otherwise they will be considered as part of the command, and that is what happened. what you want to do is Hope this can help you. |
Beta Was this translation helpful? Give feedback.
-
HA! - I could have saved a lot of typing if I had paid attention to that detail.
NB.: The max 13 character username limitation is still valid though (not a bug, but a limitation one can easily encounter if using a "full name") |
Beta Was this translation helpful? Give feedback.
-
Maybe you can enable the "NTFS long paths policy/Win32 long paths policy"? this group policy has existed for several years now |
Beta Was this translation helpful? Give feedback.
so you should not place
-i
in the end as wslusc's help sugest:every parameter should be passed before the command, otherwise they will be considered as part of the command, and that is what happened. what you want to do is
wslusc -g -i ~/workspace/spacemacs-logo/spacemacs.ico emacs
.Hope this can help you.