sindresorhus/refined-github

Remove newlines around TODO checkboxes in the editor #3788

berezovskyi posted onGitHub

<!-- 1. Make sure your requested feature makes sense for Refined GitHub: https://github.com/sindresorhus/refined-github/issues/2960 2. Include a full URL where the feature should appear. -->

On https://github.com/sindresorhus/refined-github/issues/new, there is an "Add a task list" button. There is no autocomplete on Enter and I often use a button again to add a new item but Github adds 2 newlines around the TODO item with checkbox and in 90% of cases, that's not what I want (I tend to have headers for each task list, so I need to add newlines anyway). I would like to have a feature that can be toggled in the settings of the extension, e.g. disable-task-list-newlines that would make the "Add a task list button" simply add a new checkbox item on the next line (1 newline that is). This is the default behaviour of Gitlab if I recall correctly.

I am almost embarrased to ask for this as I cannot imagine I am the only one stuggling with constant loop of pressing the "Add a task list" and removing two extra lines (unless I get tired and copy an empty task list item with a following newline and paste a dozen). I did thoroughly check https://github.com/Mottie/GitHub-userscripts and the issue tracker.


Heh, that's kind of a ridiculous behavior, but reimplementing it is a little tough.

Look at this file: https://github.com/sindresorhus/refined-github/blob/master/source/helpers/smart-block-wrap.ts

That code replicates the current "block" injection that GitHub uses. Implementing this feature would mean copying that so it works when starting a new list but adjusting it so that checkboxes are injected together.

I can think of 2 alternative solutions:

  • detect the injection of a checkbox and subsequently just drop the extra newline via textFieldEdit.replace (this creates a new undo entry)
  • reuse smartBlockWrap but drop the extra line before injecting the text via textFieldEdit.insert
posted by fregante over 4 years ago

Thank you, I will see if I can prototype a possible solution. Does Refined GH use text-field-edit already?

posted by berezovskyi over 4 years ago

Yes, it’s probably used in tandem with smartBlockWrap so you can refer to that code

posted by fregante over 4 years ago
posted by yakov116 over 4 years ago

I’m super glad we don’t have to deal with this 😌

posted by fregante over 4 years ago

Fund this Issue

$0.00
Funded

Pull requests