Edit existing intention in plugin

I'd like to make a very subtle change to an intnetion provided by the 'Javascript intention power pack'

Ctrl-J joins adjacent concatenated string literals into a single literal.

function f() {
  return "foo" + 'bar';
}

to

function f() {
  return "foobar";
}

I'd like to add a single space character the end of the word "foo "

 

Is this possible somehow???

 

0

I would suggest contacting the plugin's author on this. Email can be found at https://plugins.jetbrains.com/plugin/264-jsintentionpowerpack

1

请先登录再写评论。