Date.getDate() Returns the day of the month for the specified date
according to local time.
那么在test.js文件中输入
Date.getDate() 输入( 后,应该有函数提示,目前我这里没有出现这个.
如何设置呢??
#提示的开始字符
calltip.cpp.word.characters=._$(chars.alpha)
其它可有会有影响的
#提示时忽略大小写
calltip.cpp.ignorecase=1
word.characters.*.cpp=$(chars.alpha)$(chars.numeric).
#自动完成时忽略大小写
autocomplete.cpp.ignorecase=1
#按任意字母或点时开始自动完成
autocomplete.cpp.start.characters=.$(chars.alpha)
#输入"string.r(" 就会成为 "string.replace("
#也就是以括号成为函数自动完成的触发器
autocomplete.cpp.fillups=(
#要在自动提示的第二行显示函数说明,请指定函数定义的结束符,多数语言用的是")"
calltip.cpp.end.definition=)
#提示的参数分割符为逗号
calltip.cpp.parameters.separators=,