-
-
Notifications
You must be signed in to change notification settings - Fork 332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make most WeeChat identifiers case sensitive #1872
Comments
I like the idea of having two different command like, /AWAY and /away. Autocompletion should be more strict, as described in the specs. |
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
Priority is now allowed in function config_file_new, parameter `name`, with the same format as hooks: "priority|name" (for example: "2000|test"). If not specified, the default priority is 1000.
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
…#1872) This is faster because with case insensitive comparison, the chars are converted to lower case anyway before being compared.
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
…1872) This is faster because with case insensitive comparison, the chars are converted to lower case anyway before being compared.
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
Except the IRC command name filter (`m:xxx`).
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
flashcode
added a commit
that referenced
this issue
Jan 28, 2023
This was referenced Jan 29, 2023
Closed
flashcode
added a commit
that referenced
this issue
Mar 12, 2023
This is a partial revert of fca78ca.
flashcode
added a commit
that referenced
this issue
Apr 1, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Feature description
Many WeeChat identifiers are currently case insensitive, for example: configuration files/sections/options, command names and parameters, completion, etc.
Most of them should be case sensitive so that for example an alias
/AWAY
would be different from the/away
command, or a parameter in upper case would be different as well, eg:/test -o
is different from/test -O
.Specification: https://specs.weechat.org/specs/2023-001-case-sensitive-identifiers.html
The text was updated successfully, but these errors were encountered: