leaf

Results 46 comments of leaf

Hey, thank you for mentioning it. Of course we should support it. I've not learned and used the new composition API yet. I just glanced at its [documentation](https://vue-composition-api-rfc.netlify.app/) and tried...

Hi, I've added Vue3 composition API syntax highlight based on [https://v3.vuejs.org/api/composition-api.html](https://v3.vuejs.org/api/composition-api.html). They were tested in a demo Vue3 project created by the latest vue-cli. ``` setup ref reactive toRefs watch...

@Mootook, thank you for the feedback. I'm using Vim8.2 without any js plugin. The default syntax with a little adjustment works well for me. As you mentioned, `pangloss/vim-javascript` is the...

I see. We could wait until it's stable.

Exactly. I see that below are considered stable. - ** v-bind**: https://github.com/vuejs/rfcs/pull/231 - **** https://github.com/vuejs/rfcs/pull/227 The documentations are - https://v3.vuejs.org/api/sfc-style.html#style-scoped - https://v3.vuejs.org/api/sfc-script-setup.html#basic-syntax I'll try to support these new syntax highlights.

Hi, @Mootook . I've added these new API syntaxes. Would you like to help test it and let me know if it works?

After updating emmet, change `imap` return value from return emmet#expandAbbr(0, "") to return emmet#expandAbbr(1, "") it works. Thanks again!

`=>` issue still exists for `emmet#expandAbbr(0, "")` Now render: (text) => div produces render: (text)

In CodeMirror vim mode, `j`, `k` will unfold code as the cursor moves into folded lines. Using `gj`, `gk` will solve this problem. `j`,`k`: moveByLines `gj`, `gk`: moveByDisplayLines You can...