ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Hapo​Itak

by seiichisan ST3

HapoItak is a web-developr's powerful toolkit that can improve your HTML, JSP and JAVA workflow.

Details

Installs

  • Total 276
  • Win 174
  • Mac 67
  • Linux 35
Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

HapoItak

HapoItak is a web-developr's powerful toolkit that can improve your HTML, JSP and JAVA workflow. HapoItak adds aditional auto-completion capability to edit file of HTML, JSP AND JAVA. The code longer than usual can be able to complemented by HapoItak.
It's in the point that more than one classes can be defined in HapoItak to be different from plugins which 'Emmet' and 'html5'.

And also, HapoItak has some conversion function. For example, HapoItak adds comma to each word and wrap each word with double quotation.

And also, HapoItak parses english reduction expression you type, and produce output JAVA.

Homepage is HapoItak

Example 1

HapoItak adds comma to each word and wrap each word with double quotation by 'ctrl+alt+u' key input.

before and after 1

Example 2

The text is surrounded with html tag by 'ctrl+alt+n' key input by HapoItak. The text can be able to surrounded with html tag every line.

before and after 4

Example 3

HapoItak replace html special character with html entities by 'ctrl+alt+y' key input.

Before
before and after 10

After
before and after 11

Example 4

HapoItak escape double quotation by 'ctrl+alt+h' key input.

Before
before and after 12

After
before and after 13

Example 5

For example, the following list is shown to input which is 'jsf'.

  1. jsf_if_a=b
  2. jsf_if_a=b_else
  3. jsf_hidden
  4. jsf_commandButton
  5. jsf_outputText

For example, 'jsf_if_a=b' expression is expanded into:

<c:if test='${$1 == "$2"}'>
$3
</c:if>

For example, 'jsf_if_a=b_else' expression is expanded into:

<c:if test='${$1 == "$2"}'>
$3
</c:if>
<c:if test='${$4 != "$5"}'>
$6
</c:if>

Example 6

For example, In the file by which an extension is java, this reduction expression:

property user_id ユーザID

can be expanded by into:

/** ユーザID */
private String userId;

/**
 * ユーザIDを取得します。
 * @return ユーザID。
 */
public String getUserId() {
    return userId;
}

/**
 * ユーザIDを設定します。
 * @param userId ユーザID。
 */
public void setUserId(String userId) {
    this.userId = userId;
}

Operation above-mentioned is performed by 'ctrl+i'.