Processes the query string and performs it.

Property definitions

nitc $ Nitx :: do_command
	# Processes the query string and performs it.
	fun do_command(str: String) do
		if str == ":q" then
			exit 0
		else if str == ":h" then
			help
			return
		end
		parser.execute(str, no_color)
	end
src/nitx.nit:109,2--118,4