السلام عليكم تحياتى لكم جميعا فى مشكلة فى الفجول ستديوا كوداك لما اكتب كود css اوhtml البرنامج مجرد ماكتب اول حرف او حرفين من الكود البرنامج تلقائى بيكملة لوحده ازاى اقفل الخاصية دى موش عايز البرنامج يكمل الكود عشان احفظ الكود ومعتمدش على البرنامج وشكراا لكم مقدما
السلام عليكم فى خاصية فى الفجوال ستديو ازاى اقفلها
يمكنك الدخول للإعدادات settings ثم البحث عن auto compleate ووضع القيم false لها.
الدخول للإعدادت يمكن أن يتم من القائمة العلوية أو بالضغط على ctrl + ذ أو ctrl + , .
ويمكنك إلغاء تفعيل الإضافات التي من الممكن أنها تقوم بذلك.
افتح قائمة file - preference - settings
أضف إلى ملف settings.json ما بلي
{
// OPTIONAL WORD WRAPPING
// Controls if lines should wrap. The lines will wrap at min(editor.wrappingColumn, viewportWidthInColumns).
"editor.wordWrap": "off",
// Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'.
"editor.wrappingIndent": "none",
// TURN OFF AUTOCOMPLETION
// Controls if quick suggestions should show up or not while typing
"editor.quickSuggestions": false,
// Controls the delay in ms after which quick suggestions will show up
"editor.quickSuggestionsDelay": 90,
// Enables parameter hints
"editor.parameterHints": false,
// Controls if the editor should automatically close brackets after opening them
"editor.autoClosingBrackets": false,
// Controls if the editor should automatically format the line after typing
"editor.formatOnType": false,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": false,
// Controls if suggestions should be accepted 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions.
"editor.acceptSuggestionOnEnter": "off"
}
وهذه أيضا.
{
"html.autoClosingTags": false,
"html.format.enable": false,
"html.validate.scripts": false,
"html.suggest.html5": false,
"html.format.extraLiners": ""
}
التعليقات