blob: b3d9720cbd19c36ca4bbddc6eb7896f914e8409a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.python.internal.ui.text;
import org.eclipse.jface.text.rules.IWordDetector;
/**
* A python aware word detector.
*/
public class PythonWordDetector implements IWordDetector {
@Override
public boolean isWordPart(char character) {
return Character.isJavaIdentifierPart(character);
}
@Override
public boolean isWordStart(char character) {
return Character.isJavaIdentifierStart(character);
}
}