-
Notifications
You must be signed in to change notification settings - Fork 60
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
Wanting to develop some features #91
Comments
Hi, thanks for your interest in
I'd recommend looking at One other note: Good luck - feel free to ping me if you'd like any more information about |
Thanks for the response! I'll start playing around with the code. |
This is good info. I'd like to help too when I get a chance.
I'm curious if mmm-mode is the best option. Found this page with a variety of choices. https://www.emacswiki.org/emacs/MultipleModes From what I can see, web-mode does not use mmm-mode. Since .vue files are just HTML files with some special rules, I'm wondering if it would be easy to fork (Or instead of fork it, configure it in some way) web-mode and just make a few changes to get it working. |
I agree - Back when this project started, many linters/autocompleters/etc didn't know how to handle vue files, so hacking around the single-language linters was the best solution. This has changed for the better as time has progressed, and packages like |
Which has now been added natively to lsp-mode :) Syntax highlighting is not defined by a language server though, right? So vue-mode is still a required package. |
I have been using this package every day at work for awhile now and I want to contribute to this project and develop some features. I don't know where to begin. I haven't programmed in emacslisp before and I don't know much about emacs/packages and how it all works. If anyone has any resources to understand emacslisp and how to create packages for emacs that would be great. Also if these features aren't what this package is looking for I have no problem forking my own for others to use.
This isn't a feature request list. I am trying to develop these features for myself and others if they want it. So I am wondering if any of these are possible to develop. Note: I use the Vim mode in spacemacs.
Autocomplete for
Automatic marking
http://vim.wikia.com/wiki/Using_marks
ma
set mark a at current cursor location'a
jump to line of mark a (first non-blank character in line)I want to automatically mark these
'c
'm
't
's
Automatic file template
So when I create a new file I can just run a command to generate a generic template.
also I have no idea how to build/run/test the vue-mode package in this repo. Could someone give me some pointers?
The text was updated successfully, but these errors were encountered: