OPENIDE added extra words to the english spellchecker

(cherry picked from commit e9db893d00ff8fce228db0b9395a4c2457f7199c)
(cherry picked from commit 5906e2d917)
(cherry picked from commit f18582be83)
(cherry picked from commit 8f53c4fe95)
This commit is contained in:
Dmitry Lyubin
2025-03-24 18:06:55 +03:00
committed by Nikita Iarychenko
parent a60f1944cf
commit 0083694b8d
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"};
}
}