mirror of https://github.com/zulip/zulip.git
slash commands: Remove /settings command.
It's easy enough for power keyboard users to just use "g" to get to settings, and it's certainly easier for mouse users to just go to the menu.
This commit is contained in:
parent
5f684bf119
commit
8ffe22fc15
|
@ -10,7 +10,6 @@ Currently supported slash commands are:
|
|||
- `/ping` to ping to server and get back the time for the round
|
||||
trip. Mainly for testing.
|
||||
- `/fluid-width` and `/fixed-width` to toggle that setting
|
||||
- `/settings` to open the settings page
|
||||
|
||||
It is important to distinguish slash commands from the
|
||||
[widget system](/subsystems/widgets.md). Slash commands essentially
|
||||
|
|
|
@ -161,11 +161,6 @@ const my_slash = {
|
|||
text: "translated: /my (Test)",
|
||||
};
|
||||
|
||||
const settings_slash = {
|
||||
name: "settings",
|
||||
text: "translated: /settings (Load settings menu)",
|
||||
};
|
||||
|
||||
const sweden_stream = {
|
||||
name: "Sweden",
|
||||
description: "Cold, mountains and home decor.",
|
||||
|
@ -1522,7 +1517,6 @@ test("typeahead_results", () => {
|
|||
|
||||
// Autocomplete by slash commands.
|
||||
assert_slash_matches("me", [me_slash]);
|
||||
assert_slash_matches("settings", [settings_slash]);
|
||||
|
||||
// Autocomplete stream by stream name or stream description.
|
||||
assert_stream_matches("den", [denmark_stream, sweden_stream]);
|
||||
|
|
|
@ -408,10 +408,6 @@ export const slash_commands = [
|
|||
text: $t({defaultMessage: "/poll Where should we go to lunch today? (Create a poll)"}),
|
||||
name: "poll",
|
||||
},
|
||||
{
|
||||
text: $t({defaultMessage: "/settings (Load settings menu)"}),
|
||||
name: "settings",
|
||||
},
|
||||
{
|
||||
text: $t({defaultMessage: "/todo (Create a todo list)"}),
|
||||
name: "todo",
|
||||
|
|
|
@ -2,7 +2,6 @@ import $ from "jquery";
|
|||
|
||||
import marked from "../third/marked/lib/marked";
|
||||
|
||||
import * as browser_history from "./browser_history";
|
||||
import * as channel from "./channel";
|
||||
import * as common from "./common";
|
||||
import * as feedback_widget from "./feedback_widget";
|
||||
|
@ -189,11 +188,6 @@ export function process(message_content) {
|
|||
return true;
|
||||
}
|
||||
|
||||
if (content === "/settings") {
|
||||
browser_history.go_to_location("settings/your-account");
|
||||
return true;
|
||||
}
|
||||
|
||||
// It is incredibly important here to return false
|
||||
// if we don't see an actual zcommand, so that compose.js
|
||||
// knows this is a normal message.
|
||||
|
|
Loading…
Reference in New Issue