OPENIDE added extra words to the english spellchecker

This commit is contained in:
Dmitry Lyubin
2025-03-24 18:06:55 +03:00
committed by Nikita Iarychenko
parent d23738e433
commit 60a741fc6e
2 changed files with 26 additions and 16 deletions

View File

@@ -0,0 +1,20 @@
axiomjdk
axiomjdk's
libercat
libercat's
haulmont
haulmont's
amplicode
amplicode's
openide
openide's
astralinux
astralinux's
gitflic
gitflic's
flic
flic's
gitflic
gitflic's
evictable
jmix's

View File

@@ -1,24 +1,14 @@
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
//
// Modified by Dmitry Lyubin at 2025 as part of the OpenIDE project(https://openide.ru).
// Any modifications are available on the same license terms as the original source code.
//
package com.intellij.spellchecker;
public class DefaultBundledDictionariesProvider implements BundledDictionaryProvider {
@Override
public String[] getBundledDictionaries() {
return new String[]{"jetbrains.dic", "names.dic"};
return new String[]{"jetbrains.dic", "names.dic", "openide.dic"};
}
}