> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/modifiers/modifiers.placeholder_instructions.md).

# Modifiers.placeholder\_instructions()

`placeholder_instructions() →` [`Instructions`](/glider-ide/api/instructions.md)

Returns placeholder [instructions](/glider-ide/api/instructions.md) for the set of [Modifiers](/glider-ide/api/modifiers.md).

The placeholder or placer instruction is the "\_" (underline) instruction which defines where the function code must be inline in the modifier.

## Query Example

An example to retrieve the instructions used by the modifiers with the name `lock` is as below

```python
from glider import *
def query():
  instructionlist = Modifiers()\
      .with_name("lock")\
      .placer_instructions()\
      .exec(5,5)
  return instructionlist
```

## Example Output

<figure><img src="/files/zaxkD5jubqca3dYPbZ9B" alt=""><figcaption></figcaption></figure>
