copilot-codespaces-vscode icon indicating copy to clipboard operation
copilot-codespaces-vscode copied to clipboard

[Bug] "Open Completions Panel" not an available option

Open rnbw-spctrm opened this issue 2 years ago • 8 comments

Summary

"Open Completions Panel" is not present in '...' menu

How to reproduce

  1. Starting on Step 3 - Activity: Add another Javascript method and view all suggestions
  2. On activity step 3: Stop typing and view the Copilot suggestion by hovering over the red squiggly and select the ...
  3. "Open Completions Panel" is not in the menu.

Please include screenshots.

copilot-tutorial-bug

Additional context

I have tried changing the input but, no matter how many suggestions it has, this option does not appear.

rnbw-spctrm avatar Jul 22 '23 00:07 rnbw-spctrm

👀 @skills/content-reviewers

hectorsector avatar Jul 31 '23 13:07 hectorsector

I had the same issue, but found a way around it using the keyboard shortcut Ctrl+Enter (on Windows). This opened a second editor side-by-side, with a number of code suggestions listed.

gustafl avatar Aug 05 '23 16:08 gustafl

Same issue here too, but as @gustafl said, Using the keyboard shortcut Ctrl + Enter opens up the completion panel.

cr2007 avatar Aug 11 '23 08:08 cr2007

Issue still present

JartanFTW avatar Dec 12 '23 20:12 JartanFTW

Noting that the issue is still present

ajmoorexyz avatar Mar 08 '24 01:03 ajmoorexyz

Same, issue still present. The course material only mentions Ctrl+Enter on the next step sigh

BlackHawke007 avatar Apr 29 '24 16:04 BlackHawke007

function skillsMember() { // Obtener elementos del DOM var skills = document.getElementById("skills"); var member = document.getElementById("member"); var skillsMember = document.getElementById("skillsMember");

// Verificar el valor seleccionado del elemento skillsMember
var skillsMemberValue = skillsMember.options[skillsMember.selectedIndex].value;

// Alternar la visibilidad de los elementos según la condición
if (skills.style.display === "none") {
    skills.style.display = "block";
    member.style.display = "none";
} else {
    skills.style.display = "none";
    member.style.display = "block";
}

// Se puede agregar lógica adicional basada en el valor seleccionado, si es necesario
// if (skillsMemberValue === "someValue") {
//     // Hacer algo basado en el valor seleccionado
// }

} var skills = document.getElementById("skills"); var member = document.getElementById("member"); var skillsMember = document.getElementById("skillsMember"); var skillsMemberValue = skillsMember.options[skillsMember.selectedIndex].value; if (skills.style.display === "none") { skills.style.display = "block"; member.style.display = "none"; } else { skills.style.display = "none"; member.style.display = "block"; } // if (skillsMemberValue === "someValue") { // // Hacer algo basado en el valor seleccionado // }

maiapichi avatar May 25 '24 15:05 maiapichi

Screenshot_20241203-060115

Cu46898 avatar Dec 04 '24 05:12 Cu46898