Html code completion uses the standard Vim code completion mechanism like so:
<ht<Ctrl-X><Ctrl-U>
<html>
<he<Ctrl-X><Ctrl-U>
<html>
<head>
<lin<Ctrl-X><Ctrl-U>
<html>
<head>
<link ty<Ctrl-X><Ctrl-U>
<html>
<head>
<link type
...
When editing a html file eclim will default to validating the file when it is written. Any errors will be added to the current window's location list (:help location-list) and their corresponding line number noted via Vim's sign functionality.
If you do not want your html files validated automatically when saved, you can set the g:EclimHtmlValidate variable described in the configuration section below.
Whether or not auto validation has been enabled, eclim also exposes the command :Validate to manually execute the validation of the file.
When editing html files eclim provides some utilility commands for your convience.
:BrowserOpen - Opens the current html file in your configured browser.
Css code completion uses the standard Vim code completion mechanism like so:
bo<Ctrl-X><Ctrl-U>
body {
font-<Ctr-X><Ctrl-U>
body {
font-family: sa<Ctrl-X><Ctrl-U>
body {
font-family: sans-serif;
...
When editing a css file eclim will default to validating the file when it is written. Any errors will be added to the current window's location list (:help location-list) and their corresponding line number noted via Vim's sign functionality.
If you do not want your css files validated automatically when saved, you can set the g:EclimCssValidate variable described in the configuration section below.
Whether or not auto validation has been enabled, eclim also exposes the command :Validate to manually execute the validation of the file.