shortcut for unordered list

Make a request or discuss new features.
Post Reply
danLLVEM
Posts: 1
Joined: 14 Jan 2022 20:46

shortcut for unordered list

Post by danLLVEM »

Hi, i would like to request new feature. I need to assign a shortcut to HTML>List>Unordered list. And I'm only able to assign a shortcut to HTML list menu. But that won't make my workflow faster.
Besides that your editor is really great.
User avatar
pjj
Posts: 2108
Joined: 13 Oct 2009 13:48
Location: Kraków, Poland

Re: shortcut for unordered list

Post by pjj »

It's already there: Environment > Customize keyboard > InsertULAction > press desired shortcut > OK
Alium tibi quaere fratrem; hic, quem tuum putas, meus est. Titus Flāvius Caesar Vespasiānus Augustus
User avatar
Rickard Johansson
Site Admin
Posts: 6575
Joined: 19 Jul 2006 14:29

Re: shortcut for unordered list

Post by Rickard Johansson »

You can also use Emmet abbreviations.

In your HTML document type:

Code: Select all

ul [Shift+Enter] and it will expand to <ul></ul>
or e.g.

Code: Select all

ul>li*3 [Shift+Enter] which expands into
 
 <ul>
   <li></li>
   <li></li>
   <li></li>
 </ul>
Post Reply