-
Notifications
You must be signed in to change notification settings - Fork 309
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
セルの全選択 #1963
セルの全選択 #1963
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
全選択はMenuBarの編集に足してもいいと思います。
src/type/preload.ts
Outdated
@@ -172,6 +172,10 @@ export const defaultHotkeySettings: HotkeySettingType[] = [ | |||
action: "選択解除", | |||
combination: HotkeyCombination("Escape"), | |||
}, | |||
{ | |||
action: "セル全選択", | |||
combination: HotkeyCombination(!isMac ? "Ctrl shift A" : "Meta A"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
combination: HotkeyCombination(!isMac ? "Ctrl shift A" : "Meta A"), | |
combination: HotkeyCombination(!isMac ? "Ctrl Shift A" : "Meta Shift A"), |
MacはCmd+Aになってそうです。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shiftは入れ忘れていました
他のメニューバーにあっても良さそうな機能といっしょにメーニューバーに追加してきます。
src/components/Talk/TalkEditor.vue
Outdated
registerHotkeyWithCleanup({ | ||
editor: "talk", | ||
enableInTextbox: false, | ||
name: "セル全選択", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「全てのセルを選択」の方が丁寧かも?
長いのが気になるなら「全て選択」「全セルを選択」とかいい感じだと思います。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
既存のnameと口調を合わせようと今確認したところ、既存のものも口調に揺れがある気がするのでそこと同時に直してきます。
既存のを変更したならマイグレーション(src/backend/common/ConfigManager.ts)書かないとダメそうな気がします. |
defaultHotkeySettingsに含まれているものしか書き換えていないので自動でされるマイグレーションだけで大丈夫そうです |
されてなさそうです |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!!!
プルリクエストありがとうございます、とても助かります!!
他にもいろいろissueがありますので、もしよかったらぜひ挑戦してみてください!!
とても正確な進行だったと思います、次のプルリクエストもめちゃくちゃお待ちしております・・・!!!!
いくつか当時から変わったことがあったのでこちらで変更してマージさせていただきます!
- マイグレーションがうまく動くかチェック
ちょっとctrl+Aをセル全選択にできないか挑戦してみようと思います! |
内容
セルの全選択をショートカットでできるようにしました
関連 Issue
#1962
その他
issueではctrl+Aとなっていましたがテキストの全選択と被り、重複が許されないようだったので仮にctrl+shift+Aとしました