Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ad4da1819aaf1c8dd5e3aa9be883b6c578517368 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*******************************************************************************
 * Copyright (c) 2009 Red Hat Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Alexander Kurtakov - initial API and implementation
 *******************************************************************************/
package org.eclipse.dltk.sh.ui;

import org.eclipse.dltk.ui.text.DLTKColorConstants;

public interface IShellColorConstants {
	String SHELL_COMMENT = DLTKColorConstants.DLTK_SINGLE_LINE_COMMENT;
	String SHELL_DEFAULT = DLTKColorConstants.DLTK_DEFAULT;
	String SHELL_DOUBLE_QUOTE = "SHELLED_interpolated_string";
	String SHELL_EVAL = DLTKColorConstants.DLTK_OPERATOR;
	String SHELL_FUNCTION = DLTKColorConstants.DLTK_FUNCTION_DEFINITION;
	String SHELL_HASHBANG = DLTKColorConstants.DLTK_MULTI_LINE_COMMENT;
	String SHELL_KEYWORD = DLTKColorConstants.DLTK_KEYWORD;
	String SHELL_SINGLE_QUOTE = DLTKColorConstants.DLTK_STRING;
	String SHELL_VARIABLE = DLTKColorConstants.DLTK_ARGUMENT;
	String SHELL_COMMAND = DLTKColorConstants.DLTK_BASE_CLASS;
	String SHELL_TODO_TAG = DLTKColorConstants.TASK_TAG;
}

Back to the top